Skip to content

Commit 59168f6

Browse files
committed
Fix: Checkstyle
Signed-off-by: anaconda875 <hflbtmax@gmail.com>
1 parent 958e3f7 commit 59168f6

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

spring-core/src/main/java/org/springframework/core/ResolvableType.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)