mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 08:51:02 +07:00
[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:
committed by
intellij-monorepo-bot
parent
d40820813e
commit
ab14666e4e
@@ -18,7 +18,7 @@ class Main {
|
||||
default -> () -> {
|
||||
switch (o2) {
|
||||
case null -> { retu<caret> }
|
||||
case default -> { retu<caret> }
|
||||
default -> { retu<caret> }
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
@@ -18,7 +18,7 @@ class Main {
|
||||
default -> () -> {
|
||||
switch (o2) {
|
||||
case null -> { return;<caret> }
|
||||
case default -> { return;<caret> }
|
||||
default -> { return;<caret> }
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user