move method: remove qualifier after calls corrections

This commit is contained in:
anna
2010-01-18 17:35:31 +03:00
parent f074aebd25
commit b06e294172
6 changed files with 69 additions and 1 deletions
@@ -0,0 +1,17 @@
public class A {
}
class B {
void foo(String s) {
System.out.println(s);
}
void foo() {
foo("");
if (false) {
foo();
}
}
}