This commit is contained in:
Dmitry Jemerov
2009-09-10 20:13:55 +04:00
parent f6b9382f4e
commit 40139d670a
49 changed files with 14 additions and 7 deletions
@@ -0,0 +1,5 @@
public class Extracted {
static void foo() {
System.out.println("");
}
}
@@ -0,0 +1,6 @@
class Test {
static void bar(){
Extracted.foo();
}
}
@@ -0,0 +1,9 @@
class Test {
static void foo() {
System.out.println("");
}
static void bar(){
foo();
}
}