mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 22:51:01 +07:00
8 lines
165 B
Java
8 lines
165 B
Java
// "Surround with 'if (s != null)'" "false"
|
|
class A {
|
|
void foo(){
|
|
String s = null;
|
|
for (int i=<caret>s.toString().hashCode(); i==0; ) {}
|
|
}
|
|
}
|