folowup to IDEA-149950: changed "package local" to JLS-conformant "package-private"

This commit is contained in:
Alexey Kudravtsev
2016-02-18 13:53:04 +03:00
parent ced90d82dd
commit 86b6ee7f18
33 changed files with 77 additions and 77 deletions
@@ -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(); }
}