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