Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
wilsonwatson committed Sep 1, 2023
1 parent 2c92fc5 commit 3f20fa3
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ private void checkType(CompilationData data, Element[] warnPos, String path, Typ
if (entry.getValue()
.accept(new SimpleAnnotationValueVisitor9<Boolean, Void>() {


@Override
public Boolean visitArray(
List<? extends AnnotationValue> vals, Void p) {
Expand All @@ -110,7 +109,7 @@ public Boolean visitString(String s, Void p) {
}
}, null)) {
continue outer;
} ;
}
}
}
}
Expand All @@ -122,7 +121,7 @@ public Boolean visitString(String s, Void p) {
post2 += "[*]";
}
Element element = data.types.asElement(typeMirror);
Element newElements[] = new Element[warnPos.length + 1];
Element[] newElements = new Element[warnPos.length + 1];
for (int i = 0; i < warnPos.length; i++) {
newElements[i] = warnPos[i];
}
Expand Down

0 comments on commit 3f20fa3

Please sign in to comment.