Skip to content

Commit dc32991

Browse files
committed
Polishing
1 parent 28e2dd0 commit dc32991

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

spring-core/src/main/java/org/springframework/asm/SpringAsmInfo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/**
2020
* Utility class exposing constants related to Spring's internal repackaging
21-
* of the ASM bytecode manipulation library (currently based on version 5.0).
21+
* of the ASM bytecode manipulation library (currently based on version 6.0).
2222
*
2323
* <p>See <a href="package-summary.html">package-level javadocs</a> for more
2424
* information on {@code org.springframework.asm}.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1350,7 +1350,7 @@ public static ResolvableType forType(@Nullable Type type, @Nullable ResolvableTy
13501350
* @see #forType(Type)
13511351
*/
13521352
public static ResolvableType forType(ParameterizedTypeReference<?> typeReference) {
1353-
return forType(typeReference.getType(), null ,null);
1353+
return forType(typeReference.getType(), null, null);
13541354
}
13551355

13561356
/**
@@ -1594,7 +1594,7 @@ public static WildcardBounds get(ResolvableType type) {
15941594
}
15951595
WildcardType wildcardType = (WildcardType) resolveToWildcard.type;
15961596
Kind boundsType = (wildcardType.getLowerBounds().length > 0 ? Kind.LOWER : Kind.UPPER);
1597-
Type[] bounds = boundsType == Kind.UPPER ? wildcardType.getUpperBounds() : wildcardType.getLowerBounds();
1597+
Type[] bounds = (boundsType == Kind.UPPER ? wildcardType.getUpperBounds() : wildcardType.getLowerBounds());
15981598
ResolvableType[] resolvableBounds = new ResolvableType[bounds.length];
15991599
for (int i = 0; i < bounds.length; i++) {
16001600
resolvableBounds[i] = ResolvableType.forType(bounds[i], type.variableResolver);

0 commit comments

Comments
 (0)