Skip to content

Commit

Permalink
Automatic code cleanup.
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 577958835
  • Loading branch information
java-team-github-bot authored and Javac Team committed Oct 30, 2023
1 parent ae935f4 commit a86fafc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/com/google/turbine/binder/Processing.java
Expand Up @@ -161,7 +161,7 @@ public class Processing {
SupportedAnnotationTypes supportedAnnotationTypes = e.getValue();
Set<TypeElement> annotations = new HashSet<>();
boolean run = supportedAnnotationTypes.everything() || toRun.contains(processor);
for (ClassSymbol a : allAnnotations.keys()) {
for (ClassSymbol a : allAnnotations.keySet()) {
if (supportedAnnotationTypes.everything()
|| supportedAnnotationTypes.pattern().matcher(a.toString()).matches()) {
annotations.add(factory.typeElement(a));
Expand Down

0 comments on commit a86fafc

Please sign in to comment.