rationalize static method calls after pull up

This commit is contained in:
anna
2011-09-02 19:25:58 +02:00
parent d390856be1
commit b01b21b30f
4 changed files with 46 additions and 5 deletions
@@ -0,0 +1,10 @@
class Foo {}
class FooImpl extends Foo {
public static void foo(){}
<caret>
}
class U {
public static void main(String[] args) {
FooImpl.foo();
}
}