mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 16:50:55 +07:00
14 lines
286 B
Java
14 lines
286 B
Java
// "Invert 'if' condition" "true"
|
|
public class C {
|
|
public boolean isAcceptable(Object element) {
|
|
i<caret>f (element != null) {
|
|
System.out.println();
|
|
//c1
|
|
if (true) {
|
|
//c2
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|