move static to interface (IDEA-105844)

This commit is contained in:
anna
2013-04-22 13:55:13 +02:00
parent 45706e2b3d
commit 599a28d446
7 changed files with 44 additions and 3 deletions
@@ -0,0 +1,5 @@
public interface B {
static void foo() {
System.out.println("Hello");
}
}