mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 20:42:52 +07:00
avoid warnings on super abstract methods that they try to assign weaker access (IDEA-67584)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
abstract class A
|
||||
{
|
||||
abstract void foo();
|
||||
}
|
||||
|
||||
interface B
|
||||
{
|
||||
abstract void foo();
|
||||
}
|
||||
|
||||
abstract class C extends A implements B { }
|
||||
Reference in New Issue
Block a user