mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
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:
@@ -0,0 +1,12 @@
|
||||
class Test {
|
||||
interface Printer {
|
||||
void foo();
|
||||
|
||||
}
|
||||
|
||||
abstract class AbstractPrinter implements Printer {
|
||||
@Override
|
||||
public void f<caret>oo() {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user