aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/pretty/resource/after/Switch12.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/pretty/resource/after/Switch12.java b/test/pretty/resource/after/Switch12.java
index 89825223..f334ab08 100644
--- a/test/pretty/resource/after/Switch12.java
+++ b/test/pretty/resource/after/Switch12.java
@@ -18,11 +18,11 @@ public class Switch12 {
public int switchExpr() {
return switch (5) {
- case 1, 2 -> 0;
- case 3 -> {
- break 10;
- }
- default -> 10;
+ case 1, 2 -> 0;
+ case 3 -> {
+ break 10;
+ }
+ default -> 10;
} + 10;
}
}