From 53d9ad9ffba73e38af2e32ac4fc718da943bb1fd Mon Sep 17 00:00:00 2001 From: Henri Yandell Date: Wed, 17 Mar 2010 18:32:36 +0000 Subject: [PATCH] 'stolen' is a cute word, but given it means taking without permission it's incorrect here git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@924407 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/java/org/apache/commons/lang3/reflect/TypeUtils.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;