Files
openide/java/java-tests/testData/refactoring/introduceVariable/MethodCallInSwitch.after.java

12 lines
259 B
Java

class A {
int getContentElementType() {
return 0;
}
void method() {
final int i = getContentElementType();
switch (i) {
default: throw new IllegalArgumentException("Wrong content type: " + i);
}
}
}