This commit is contained in:
Dmitry Jemerov
2009-09-11 16:27:36 +04:00
parent 977abdff2b
commit 16ee09587d
21 changed files with 8 additions and 2 deletions
@@ -0,0 +1,5 @@
public class Usage {
Object method() {
return package1.test.A.method();
}
}
@@ -0,0 +1,7 @@
package package1.test;
public class A {
static Object method() {
return null;
}
}