mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 08:50:57 +07:00
10 lines
300 B
Java
10 lines
300 B
Java
// "Invert 'if' condition" "true"
|
|
class Main {
|
|
boolean method(boolean a, boolean b) {
|
|
for (int i = 1; i < 10; i++)
|
|
if (a)
|
|
<caret>if (!b) /* comment 1 */
|
|
return true; /* comment 2 */
|
|
return false; /* comment 3 */
|
|
}
|
|
} |