Skip to content

Commit 22fb2a2

Browse files
committed
Whitespaces
1 parent d96152d commit 22fb2a2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/langtools/tools/javac/patterns/declarations/SeparateCompilation.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ public class Box<T extends Integer> {
222222
public pattern Box(GBox<T> o) {
223223
match Box(new GBox<T>());
224224
}
225-
225+
226226
public static class GBox<T> {}
227227
}
228228
""");
@@ -249,7 +249,7 @@ public static class GBox<T> {}
249249
public class Test {
250250
public static void main(String... args) {
251251
Box<Integer> l = new Box<>();
252-
252+
253253
switch (l) {
254254
case Box(Box.GBox<Integer> ll) -> { }
255255
default -> {}

0 commit comments

Comments
 (0)