Files
openide/java/java-tests/testData/refactoring/inlineParameter/NullValue.java.after
Dmitry Jemerov b43c03ca2f moving tests
2009-09-10 19:49:38 +04:00

13 lines
145 B
Plaintext

public class A {
void test(int count) {
String t = null;
}
void callTest() {
test(1);
}
void callTest2() {
test(2);
}
}