@ -18,6 +18,8 @@ package org.springframework.boot.test.autoconfigure.filter;
@@ -18,6 +18,8 @@ package org.springframework.boot.test.autoconfigure.filter;
import java.io.IOException ;
import java.lang.annotation.Annotation ;
import java.util.Arrays ;
import java.util.Objects ;
import java.util.Set ;
import org.springframework.beans.factory.BeanClassLoaderAware ;
@ -135,11 +137,11 @@ public abstract class AnnotationCustomizableTypeExcludeFilter extends TypeExclud
@@ -135,11 +137,11 @@ public abstract class AnnotationCustomizableTypeExcludeFilter extends TypeExclud
int result = 0 ;
result = prime * result + Boolean . hashCode ( hasAnnotation ( ) ) ;
for ( FilterType filterType : FilterType . values ( ) ) {
result = prime * result + ObjectUtils . nullSafeH ashCode( getFilters ( filterType ) ) ;
result = prime * result + Arrays . h ashCode( getFilters ( filterType ) ) ;
}
result = prime * result + Boolean . hashCode ( isUseDefaultFilters ( ) ) ;
result = prime * result + ObjectUtils . nullSafeH ashCode ( getDefaultIncludes ( ) ) ;
result = prime * result + ObjectUtils . nullSafeH ashCode ( getComponentIncludes ( ) ) ;
result = prime * result + Objects . h ashCode ( getDefaultIncludes ( ) ) ;
result = prime * result + Objects . h ashCode ( getComponentIncludes ( ) ) ;
return result ;
}