mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 13:15:25 +07:00
java 9: hide inappropriate for interface modifier suggestions, ensure valid combination of modifiers (IDEA-171091)
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
// "Make 'I.foo' public" "true"
|
||||
interface I {
|
||||
default void foo() { }
|
||||
}
|
||||
|
||||
class A implements I {
|
||||
{
|
||||
this.foo();
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
// "Make 'I.foo' public" "true"
|
||||
interface I {
|
||||
private void foo() { }
|
||||
}
|
||||
|
||||
class A implements I {
|
||||
{
|
||||
this.fo<caret>o();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user