The the patrol.

This commit is contained in:
Gary Gregory 2018-06-16 15:46:28 -06:00
parent d9f1b897a2
commit 8e8b8e05e4

View File

@ -1216,7 +1216,7 @@ public static Type[] getImplicitLowerBounds(final WildcardType wildcardType) {
*/
public static boolean typesSatisfyVariables(final Map<TypeVariable<?>, Type> typeVarAssigns) {
Validate.notNull(typeVarAssigns, "typeVarAssigns is null");
// all types must be assignable to all the bounds of the their mapped
// all types must be assignable to all the bounds of their mapped
// type variable.
for (final Map.Entry<TypeVariable<?>, Type> entry : typeVarAssigns.entrySet()) {
final TypeVariable<?> typeVar = entry.getKey();