We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66482b6 commit b2ba0d7Copy full SHA for b2ba0d7
java/ql/src/Violations of Best Practice/Implementation Hiding/VisibleForTestingAbuse.ql
@@ -50,7 +50,7 @@ where
50
exists(FieldAccess v |
51
v = e and
52
v.getField() = annotated and
53
- // depending on the visiblity of the field, using the annotation to abuse the visibility may/may not be occurring
+ // depending on the visibility of the field, using the annotation to abuse the visibility may/may not be occurring
54
(
55
// if its package protected report when its used outside its class bc it should have been private (class only permitted)
56
v.getField().isPackageProtected() and
0 commit comments