Files
Tagir Valeev ad40c945e2 [java-inspections] More quickfixes to ModCommand
GitOrigin-RevId: ccc6093d680712cb81c1325d997fb2771b61a0be
2023-06-25 19:05:51 +00:00

9 lines
200 B
Java

// "Surround with 'if (s != null)'" "true-preview"
class A {
void foo(){
String s = null;
if (s != null) {
<caret> for (int i=0; i!=s.hashCode();i++){}
}
}
}