mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
folowup to IDEA-149950: changed "package local" to JLS-conformant "package-private"
This commit is contained in:
+1
-1
@@ -6,7 +6,7 @@ public class A extends D{
|
||||
class C extends x.sub.B {
|
||||
int n=<error descr="'k' is not public in 'x.A'. Cannot be accessed from outside package">k</error>;
|
||||
|
||||
// can call despite inherited through package local from other package
|
||||
// can call despite inherited through package-private from other package
|
||||
void f() { A.staticF(); }
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
// package local class in the middle
|
||||
// package-private class in the middle
|
||||
|
||||
package x;
|
||||
class ComponentClass {
|
||||
|
||||
Reference in New Issue
Block a user