mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
10 lines
220 B
Java
10 lines
220 B
Java
// "Invert 'if' condition" "true"
|
|
class Main {
|
|
boolean method(boolean a, boolean b) {
|
|
if (a)
|
|
<caret>if (!b)
|
|
return true; // comment
|
|
int x = 1;
|
|
return false;
|
|
}
|
|
} |