Merge branch '6.0.x'
This commit is contained in:
@@ -117,8 +117,8 @@ public class TypePatternClassFilter implements ClassFilter {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(@Nullable Object obj) {
|
||||
return (this == obj || (obj instanceof TypePatternClassFilter that &&
|
||||
public boolean equals(@Nullable Object other) {
|
||||
return (this == other || (other instanceof TypePatternClassFilter that &&
|
||||
ObjectUtils.nullSafeEquals(this.typePattern, that.typePattern)));
|
||||
}
|
||||
|
||||
|
||||
@@ -109,8 +109,8 @@ public abstract class ClassFilters {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(@Nullable Object obj) {
|
||||
return (this == obj || (obj instanceof UnionClassFilter that &&
|
||||
public boolean equals(@Nullable Object other) {
|
||||
return (this == other || (other instanceof UnionClassFilter that &&
|
||||
ObjectUtils.nullSafeEquals(this.filters, that.filters)));
|
||||
}
|
||||
|
||||
@@ -150,8 +150,8 @@ public abstract class ClassFilters {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(@Nullable Object obj) {
|
||||
return (this == obj || (obj instanceof IntersectionClassFilter that &&
|
||||
public boolean equals(@Nullable Object other) {
|
||||
return (this == other || (other instanceof IntersectionClassFilter that &&
|
||||
ObjectUtils.nullSafeEquals(this.filters, that.filters)));
|
||||
}
|
||||
|
||||
|
||||
@@ -100,8 +100,8 @@ public class NameMatchMethodPointcut extends StaticMethodMatcherPointcut impleme
|
||||
|
||||
|
||||
@Override
|
||||
public boolean equals(@Nullable Object obj) {
|
||||
return (this == obj || (obj instanceof NameMatchMethodPointcut that &&
|
||||
public boolean equals(@Nullable Object other) {
|
||||
return (this == other || (other instanceof NameMatchMethodPointcut that &&
|
||||
this.mappedNames.equals(that.mappedNames)));
|
||||
}
|
||||
|
||||
|
||||
@@ -46,8 +46,8 @@ public class RootClassFilter implements ClassFilter, Serializable {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(@Nullable Object obj) {
|
||||
return (this == obj || (obj instanceof RootClassFilter that &&
|
||||
public boolean equals(@Nullable Object other) {
|
||||
return (this == other || (other instanceof RootClassFilter that &&
|
||||
this.clazz.equals(that.clazz)));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user