allow to pull methods in super interface as default ones when super interface already contains a method with the same signature; remove @Override in such case (IDEA-126988)

This commit is contained in:
Anna Kozlova
2014-07-18 10:34:56 +02:00
parent 7d19e0e85e
commit aea7066c18
5 changed files with 40 additions and 5 deletions
@@ -0,0 +1,12 @@
class Test {
interface Printer {
void foo();
}
abstract class AbstractPrinter implements Printer {
@Override
public void f<caret>oo() {
}
}
}