Files
openide/java/java-tests/testData/codeInsight/inlineElseBranch/beforeSimple1.java
T

12 lines
243 B
Java

// "Inline 'else' branch" "true"
class T {
void f(boolean b) {
if (b)
System.out.println("When true");
<caret>else
// Before
System.out.println("Otherwise");
// After
}
}