Add missing param tags

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1535123 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Benedikt Ritter 2013-10-23 19:04:29 +00:00
parent f9c2bc0785
commit 5d35afbe9c
1 changed files with 2 additions and 2 deletions

View File

@ -404,8 +404,8 @@ public class TypeUtils {
/**
* Look up {@code var} in {@code typeVarAssigns} <em>transitively</em>,
* i.e. keep looking until the value found is <em>not</em> a type variable.
* @param var
* @param typeVarAssigns
* @param var the type variable to look up
* @param typeVarAssigns the map used for the look up
* @since 3.2
*/
private static Type unrollVariableAssignments(TypeVariable<?> var, final Map<TypeVariable<?>, Type> typeVarAssigns) {