extract super class: pull up implements/extends

This commit is contained in:
anna
2009-10-29 18:25:45 +03:00
parent 91fb4c8d4c
commit e4664b62ca
5 changed files with 25 additions and 1 deletions
@@ -0,0 +1,2 @@
public abstract class Test implements java.util.List<String> {
}
@@ -0,0 +1,2 @@
public abstract class TestSubclass extends Test {
}
@@ -0,0 +1,2 @@
public abstract class Test implements java.util.List<String>{
}