Polishing

This commit is contained in:
Sam Brannen 2019-06-17 17:06:37 +03:00
parent 80c7f7f6ba
commit f6a4595cef
1 changed files with 3 additions and 2 deletions

View File

@ -29,13 +29,14 @@ public interface AnnotationFilter {
/** /**
* {@link AnnotationFilter} that matches annotations in the * {@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"); AnnotationFilter PLAIN = packages("java.lang", "org.springframework.lang");
/** /**
* {@link AnnotationFilter} that matches annotations in the * {@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"); AnnotationFilter JAVA = packages("java", "javax");