From a86fafc9fdb955ecb5313974c4f425017f0c9953 Mon Sep 17 00:00:00 2001 From: Javac Team Date: Mon, 30 Oct 2023 14:33:21 -0700 Subject: [PATCH] Automatic code cleanup. PiperOrigin-RevId: 577958835 --- java/com/google/turbine/binder/Processing.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/com/google/turbine/binder/Processing.java b/java/com/google/turbine/binder/Processing.java index 83ee9052..82440163 100644 --- a/java/com/google/turbine/binder/Processing.java +++ b/java/com/google/turbine/binder/Processing.java @@ -161,7 +161,7 @@ public class Processing { SupportedAnnotationTypes supportedAnnotationTypes = e.getValue(); Set 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));