Browse Source

Polishing

pull/23158/head
Sam Brannen 7 years ago
parent
commit
f6a4595cef
  1. 5
      spring-core/src/main/java/org/springframework/core/annotation/AnnotationFilter.java

5
spring-core/src/main/java/org/springframework/core/annotation/AnnotationFilter.java

@ -29,13 +29,14 @@ public interface AnnotationFilter { @@ -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");

Loading…
Cancel
Save