mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-27 01:42:17 +07:00
- now it can be suppressed properly - show info level if the branches have different comments GitOrigin-RevId: 5f1c5c0a67165b949b894d2d81c53800ad3b4b22
14 lines
286 B
Java
14 lines
286 B
Java
// "Merge with 'case 1'" "INFORMATION"
|
|
class C {
|
|
String foo(int n) {
|
|
switch (n) {
|
|
case 1, 2 -> {
|
|
foo(); // same comment
|
|
return "A";
|
|
}
|
|
// another comment
|
|
}
|
|
return "";
|
|
}
|
|
void foo(){}
|
|
} |