Files
openide/java/java-tests/testData/refactoring/makeMethodStatic/before16.java
Dmitry Jemerov 10ca2b4e5f test++
2009-09-10 21:57:00 +04:00

9 lines
152 B
Java

public class Test {
void anotherMethod(String s);
String field;
/**
*/
void <caret>method() {
anotherMethod(field);
}
}