File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
lib/src/main/java/com/diffplug/spotless/java
plugin-gradle/src/main/java/com/diffplug/gradle/spotless Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -414,10 +414,10 @@ private static final class State implements Serializable {
414414 // Don't move an annotation to the start of a comment line.
415415 private static final Pattern startsWithCommentPattern = Pattern .compile ("^[ \t ]*(//|/\\ *$|/\\ *|void\\ b)" );
416416
417- /**
418- * @param addedTypeAnnotations simple names to add to Spotless's default list
419- * @param removedTypeAnnotations simple names to remove from Spotless's default list
420- */
417+ /**
418+ * @param addedTypeAnnotations simple names to add to Spotless's default list
419+ * @param removedTypeAnnotations simple names to remove from Spotless's default list
420+ */
421421 State (List <String > addedTypeAnnotations , List <String > removedTypeAnnotations ) {
422422 typeAnnotations .addAll (addedTypeAnnotations );
423423 typeAnnotations .removeAll (removedTypeAnnotations );
Original file line number Diff line number Diff line change @@ -240,9 +240,9 @@ public FormatAnnotationsConfig formatAnnotations() {
240240 }
241241
242242 public class FormatAnnotationsConfig {
243- /** Annotations in addition to those in the default list. */
243+ /** Annotations in addition to those in the default list. */
244244 final List <String > addedTypeAnnotations = new ArrayList <>();
245- /** Annotations that the user doesn't want treated as type annotations. */
245+ /** Annotations that the user doesn't want treated as type annotations. */
246246 final List <String > removedTypeAnnotations = new ArrayList <>();
247247
248248 FormatAnnotationsConfig () {
You can’t perform that action at this time.
0 commit comments