IDEADEV-25972
[fedora-idea.git] / testData / refactoring / makeMethodStatic / after7.java
blob8d37037a179ccaa8255a4beb3e7213f00be5a57a
1 public class Foo {
3 public int f(int i) {
4 return 0;
7 public static int <caret>method(Foo anObject, int i) {
8 return anObject.f(i);