mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
pull up: don't conflict about same method in super if it's abstract (IDEA-177360)
This commit is contained in:
@@ -1,12 +1,10 @@
|
||||
class Test {
|
||||
interface Printer {
|
||||
void foo();
|
||||
default void foo() {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
abstract class AbstractPrinter implements Printer {
|
||||
@Override
|
||||
public void f<caret>oo() {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user