Polish: redundant pairs of parentheses should be removed

This commit is contained in:
igor-suhorukov
2018-02-25 01:04:14 +03:00
committed by Juergen Hoeller
parent eeecbaef2c
commit 67a91cf6f9
4 changed files with 5 additions and 5 deletions

View File

@@ -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());
}