mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 13:55:00 +07:00
GitOrigin-RevId: 220979068250f873c725310dc8cf38a36d1e7fdf
8 lines
143 B
Java
8 lines
143 B
Java
// "Remove repeating call 'equals()'" "false"
|
|
class Test {
|
|
void test(String s) {
|
|
if (s.equals("foo").<caret>equals("bar")) {
|
|
|
|
}
|
|
}
|
|
} |