blob: dab56d4b88ea4a49e5a352fa7428b9ae1cbf6bef [file] [log] [blame]
// "Invert If Condition" "true"
// else on the same line
class TestInvertIf {
void invertIf(Object object) {
<caret>if (object == "adf") {
System.out.println("2");
} else {
System.out.println("1");
} // comment
}
}