From 29f0d1b25e73b1046a78c244cd05859e64e295a6 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Mon, 30 Sep 2019 07:55:23 +0200 Subject: [PATCH] Remove TODO in AnnotationUtils Closes gh-23727 --- .../org/springframework/core/annotation/AnnotationUtils.java | 1 - 1 file changed, 1 deletion(-) diff --git a/spring-core/src/main/java/org/springframework/core/annotation/AnnotationUtils.java b/spring-core/src/main/java/org/springframework/core/annotation/AnnotationUtils.java index e5bdb4a7d559..ea41cc80b591 100644 --- a/spring-core/src/main/java/org/springframework/core/annotation/AnnotationUtils.java +++ b/spring-core/src/main/java/org/springframework/core/annotation/AnnotationUtils.java @@ -170,7 +170,6 @@ public static boolean isCandidateClass(Class clazz, String annotationName) { if (AnnotationsScanner.hasPlainJavaAnnotationsOnly(clazz)) { return false; } - // TODO: annotation presence registry to be integrated here return true; }