mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 12:17:12 +07:00
Fixes EA-465575 - AE: JavaParserUtil.parseFragment GitOrigin-RevId: 7a94ea5a231f0952d593e21857e8d89a27df2dd2
8 lines
141 B
Java
8 lines
141 B
Java
// "Replace 'switch' with 'if'" "true"
|
|
class Test {
|
|
void test(String str) {
|
|
<caret>switch (str) {
|
|
case "foo" + "bar":
|
|
}
|
|
}
|
|
} |