From f6a4595cef9b41729cc687cccd7a1528203deae7 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Mon, 17 Jun 2019 17:06:37 +0300 Subject: [PATCH] Polishing --- .../springframework/core/annotation/AnnotationFilter.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/core/annotation/AnnotationFilter.java b/spring-core/src/main/java/org/springframework/core/annotation/AnnotationFilter.java index 6cebacb5a57..e9b5c3abde7 100644 --- a/spring-core/src/main/java/org/springframework/core/annotation/AnnotationFilter.java +++ b/spring-core/src/main/java/org/springframework/core/annotation/AnnotationFilter.java @@ -29,13 +29,14 @@ public interface AnnotationFilter { /** * {@link AnnotationFilter} that matches annotations in the - * {@code java.lang.*} and {@code org.springframework.lang.*} packages. + * {@code java.lang} and {@code org.springframework.lang} packages + * and their subpackages. */ AnnotationFilter PLAIN = packages("java.lang", "org.springframework.lang"); /** * {@link AnnotationFilter} that matches annotations in the - * {@code java.*} and {@code javax.*} namespaces. + * {@code java} and {@code javax} packages and their subpackages. */ AnnotationFilter JAVA = packages("java", "javax");