IDEADEV-25972
[fedora-idea.git] / testData / refactoring / makeMethodStatic / after16.java
bloba80e3eb79a5a7a368e563ab8f2bd4e34ab705140
1 public class Test {
2 void anotherMethod(String s);
3 String field;
4 /**
5 * @param anObject
6 * @param field
7 */
8 static void method(Test anObject, String field) {
9 anObject.anotherMethod(field);