Browse Source

Remove redundant static declaration on Search class

Closes gh-31381
pull/31416/head
OnlyWick 12 months ago committed by GitHub
parent
commit
eafbcfd385
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      spring-core/src/main/java/org/springframework/core/annotation/MergedAnnotations.java

2
spring-core/src/main/java/org/springframework/core/annotation/MergedAnnotations.java

@ -507,7 +507,7 @@ public interface MergedAnnotations extends Iterable<MergedAnnotation<Annotation> @@ -507,7 +507,7 @@ public interface MergedAnnotations extends Iterable<MergedAnnotation<Annotation>
*
* @since 6.0
*/
static final class Search {
final class Search {
static final Predicate<Class<?>> always = clazz -> true;

Loading…
Cancel
Save