File tree Expand file tree Collapse file tree
spring-core/src/main/java/org/springframework/core Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1698,6 +1698,7 @@ public Object getSource() {
16981698 private static final class WildcardTypeImpl implements WildcardType , Serializable {
16991699
17001700 private final Type [] upperBound ;
1701+
17011702 private final Type [] lowerBound ;
17021703
17031704 private WildcardTypeImpl (Type [] upperBound , Type [] lowerBound ) {
@@ -1720,8 +1721,8 @@ public boolean equals(Object o) {
17201721 if (!(o instanceof WildcardType that )) {
17211722 return false ;
17221723 }
1723- return Arrays .equals (this .upperBound , that .getUpperBounds ())
1724- && Arrays .equals (this .lowerBound , that .getLowerBounds ());
1724+ return Arrays .equals (this .upperBound , that .getUpperBounds ()) &&
1725+ Arrays .equals (this .lowerBound , that .getLowerBounds ());
17251726 }
17261727
17271728 @ Override
You can’t perform that action at this time.
0 commit comments