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