Files
openide/java/java-tests/testData/refactoring/introduceVariable/SubexpressionWithSpacesInSelection.java

9 lines
158 B
Java

class A {
public void test(boolean a, boolean b) {
if (true && <selection>a &&
b
//some comment
</selection>
);
}
}