This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-lang.git
commit 3d673ad82c2cdc67c12cc517a4f334fd84fe2e3b Author: Gary Gregory <[email protected]> AuthorDate: Tue Nov 11 13:12:34 2025 -0500 Reduce vertical whitespace --- src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java b/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java index bd068fd09..bf0916342 100644 --- a/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java +++ b/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java @@ -1570,7 +1570,6 @@ public static boolean typesSatisfyVariables(final Map<TypeVariable<?>, Type> typ for (final Map.Entry<TypeVariable<?>, Type> entry : typeVariableMap.entrySet()) { final TypeVariable<?> typeVar = entry.getKey(); final Type type = entry.getValue(); - for (final Type bound : getImplicitBounds(typeVar)) { if (!isAssignable(type, substituteTypeVariables(bound, typeVariableMap), typeVariableMap)) { return false;
