You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tool currently does not support checking for package-private attributes in Java for inheritance.
These are attributes that are declared without any access modifier (public, private, protected). They are considered to have "package-private" access, meaning they can be accessed directly from any class in the same package, but not from classes in other packages.
Could perhaps collect the "package" statements and check whether two classes are in the same package.
The text was updated successfully, but these errors were encountered:
Tool currently does not support checking for package-private attributes in Java for inheritance.
These are attributes that are declared without any access modifier (public, private, protected). They are considered to have "package-private" access, meaning they can be accessed directly from any class in the same package, but not from classes in other packages.
Could perhaps collect the "package" statements and check whether two classes are in the same package.
The text was updated successfully, but these errors were encountered: