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

15 lines
200 B
Plaintext

public class A {
void test() {
String s = myMethod();
System.out.println(s);
}
void callTest() {
test();
}
String myMethod() {
return "";
}
}