mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 22:51:01 +07:00
11 lines
226 B
Java
11 lines
226 B
Java
// "Invert 'if' condition" "true"
|
|
public class C {
|
|
public boolean isAcceptable(Object element) {
|
|
if (element == null) {
|
|
return false;//c1
|
|
}
|
|
System.out.println();
|
|
return false;
|
|
}
|
|
}
|