mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-22 22:19:03 +00:00
Polish: redundant pairs of parentheses should be removed
This commit is contained in:
committed by
Juergen Hoeller
parent
eeecbaef2c
commit
67a91cf6f9
@@ -365,7 +365,7 @@ public class ResolvableType implements Serializable {
|
||||
if (this == NONE) {
|
||||
return false;
|
||||
}
|
||||
return (((this.type instanceof Class && ((Class<?>) this.type).isArray())) ||
|
||||
return ((this.type instanceof Class && ((Class<?>) this.type).isArray()) ||
|
||||
this.type instanceof GenericArrayType || resolveType().isArray());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user