Skip to content

Commit

Permalink
Fix java doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Ao-senXiong committed Aug 18, 2024
1 parent 3b5754a commit 8b1380f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6032,13 +6032,13 @@ public boolean doesAnnotatedForApplyToThisChecker(AnnotationMirror annotatedForA
* Does {@code anno}, which is an {@link org.checkerframework.framework.qual.UnannotatedFor}
* annotation, apply to this checker?
*
* @param annotatedForAnno an {@link UnannotatedFor} annotation
* @param unannotatedForAnno an {@link UnannotatedFor} annotation
* @return whether {@code anno} applies to this checker
*/
public boolean doesUnannotatedForApplyToThisChecker(AnnotationMirror unannotatedFor) {
public boolean doesUnannotatedForApplyToThisChecker(AnnotationMirror unannotatedForAnno) {
List<String> unannotatedForCheckers =
AnnotationUtils.getElementValueArray(
unannotatedFor, unannotatedForValueElement, String.class);
unannotatedForAnno, unannotatedForValueElement, String.class);
for (String unannoForChecker : unannotatedForCheckers) {
if (checker.getUpstreamCheckerNames().contains(unannoForChecker)
|| CheckerMain.matchesFullyQualifiedProcessor(
Expand Down

0 comments on commit 8b1380f

Please sign in to comment.