Files
openide/java/java-tests/testData/refactoring/extractMethod/SuggestChangeSignatureThreeOccurrencesTwoLiteralFolding.java

19 lines
254 B
Java

public class C {
void second() {
<selection> test(0);
test(1);</selection>
}
void none() {
test(0);
test(0);
}
void both() {
test(1);
test(1);
}
private void test(int i) {}
}