blob: c7cb74959c37c652fb1679044998ea6afc9f46a3 [file] [log] [blame]
// "Invert If Condition" "true"
class Foo {
void foo(String[] args) {
for (String s : args) {
<caret>if ("6".equals(s)) {
System.out.println(s);
}
}
}
}