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 9e1b78de5..77dc59851 100644 --- a/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java +++ b/src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java @@ -44,7 +44,7 @@ public class TypeUtils { * @param type to read * @return Class */ - // original code stolen from commons [proxy]'s 2.0 branch, then kneaded until firm + // original code taken from commons [proxy]'s 2.0 branch, then kneaded until firm public static Class getRawType(Type enclosingType, Type type) { if (type instanceof Class) { // it is raw, no problem @@ -80,7 +80,7 @@ public static Class getRawType(Type enclosingType, Type type) { * @param typeVar * @return Type resolved */ - // original code stolen from commons [proxy]'s 2.0 branch, then kneaded until firm + // original code taken from commons [proxy]'s 2.0 branch, then kneaded until firm private static Type resolveVariable(Type enclosingType, TypeVariable typeVar) { if (enclosingType instanceof ParameterizedType) { ParameterizedType parameterizedEnclosingType = (ParameterizedType) enclosingType;