[java-highlighting] 'case default' is the incorrect syntax, and it was replaced with the proper 'default' syntax.

GitOrigin-RevId: 72f8e7f6c9080db7cb0b89c0ed876eb949171e8f
This commit is contained in:
Mikhail Pyltsin
2023-07-13 18:25:37 +02:00
committed by intellij-monorepo-bot
parent d40820813e
commit ab14666e4e
32 changed files with 36 additions and 35 deletions

View File

@@ -18,7 +18,7 @@ class Main {
default -> () -> {
switch (o2) {
case null -> { retu<caret> }
case default -> { retu<caret> }
default -> { retu<caret> }
}
};
};

View File

@@ -18,7 +18,7 @@ class Main {
default -> () -> {
switch (o2) {
case null -> { return;<caret> }
case default -> { return;<caret> }
default -> { return;<caret> }
}
};
};