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 {
414
414
// Don't move an annotation to the start of a comment line.
415
415
private static final Pattern startsWithCommentPattern = Pattern .compile ("^[ \t ]*(//|/\\ *$|/\\ *|void\\ b)" );
416
416
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
+ */
421
421
State (List <String > addedTypeAnnotations , List <String > removedTypeAnnotations ) {
422
422
typeAnnotations .addAll (addedTypeAnnotations );
423
423
typeAnnotations .removeAll (removedTypeAnnotations );
Original file line number Diff line number Diff line change @@ -240,9 +240,9 @@ public FormatAnnotationsConfig formatAnnotations() {
240
240
}
241
241
242
242
public class FormatAnnotationsConfig {
243
- /** Annotations in addition to those in the default list. */
243
+ /** Annotations in addition to those in the default list. */
244
244
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. */
246
246
final List <String > removedTypeAnnotations = new ArrayList <>();
247
247
248
248
FormatAnnotationsConfig () {
You can’t perform that action at this time.
0 commit comments