Skip to content

Commit 0404062

Browse files
committed
Tabify
1 parent 263da38 commit 0404062

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/src/main/java/com/diffplug/spotless/java/FormatAnnotationsStep.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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);

plugin-gradle/src/main/java/com/diffplug/gradle/spotless/JavaExtension.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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() {

0 commit comments

Comments
 (0)