Skip to content

Commit

Permalink
Fix formatting of RemoveUnusedImportsTest test
Browse files Browse the repository at this point in the history
  • Loading branch information
knutwannheden committed Sep 8, 2023
1 parent 98051aa commit 31e20f5
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -831,7 +831,7 @@ void doNotUnfoldSubpackage() {
import static java.util.Collections.*;
class Test {
ConcurrentHashMap<String, String> m = new ConcurrentHashMap(emptyMap());
ConcurrentHashMap<String, String> m = new ConcurrentHashMap<>(emptyMap());
}
"""
)
Expand Down Expand Up @@ -973,7 +973,7 @@ public enum Enums {
}
public static void helloWorld() {
System.out.println("hello world!");
System.out.println("hello world!");
}
}
"""
Expand Down Expand Up @@ -1003,7 +1003,7 @@ class Test {
public static void main(String[] args) {
var uniqueCount = B1;
helloWorld();
}
}
}
"""
)
Expand All @@ -1030,7 +1030,7 @@ public enum Enums {
}
public static void helloWorld() {
System.out.println("hello world!");
System.out.println("hello world!");
}
}
"""
Expand Down Expand Up @@ -1065,7 +1065,7 @@ public static void main(String[] args) {
var uniqueCount = B1;
var uniqueCountNested = C1;
helloWorld();
}
}
}
"""
)
Expand All @@ -1085,7 +1085,7 @@ public class A {
public short getShort1() {
return SHORT1;
}
}
}
"""
),
Expand Down

0 comments on commit 31e20f5

Please sign in to comment.