Skip to content

Commit d72a11c

Browse files
committed
Fix spotbugs.
1 parent ff38088 commit d72a11c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
public final class ImportOrderStep {
4343
private static final boolean WILDCARDS_LAST_DEFAULT = false;
4444
private static final boolean SEMANTIC_SORT_DEFAULT = false;
45-
private static final Set<String> TREAT_AS_PACKAGE_DEFAULT = null;
46-
private static final Set<String> TREAT_AS_CLASS_DEFAULT = null;
45+
private static final Set<String> TREAT_AS_PACKAGE_DEFAULT = Set.of();
46+
private static final Set<String> TREAT_AS_CLASS_DEFAULT = Set.of();
4747

4848
private final String lineFormat;
4949

0 commit comments

Comments
 (0)