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