pull up: preserve/remove override from pulled method according to super classes structure

This commit is contained in:
anna
2011-09-06 11:05:01 +02:00
parent 5471e8e202
commit 25b5ddcbc8
6 changed files with 59 additions and 9 deletions
@@ -0,0 +1,8 @@
public class Test {
abstract class Base extends Int {
}
abstract class Int {
public abstract String foo();
}
}