From f564c5f33732cf33dc6de556c17526a44590f1c0 Mon Sep 17 00:00:00 2001 From: Charlie Groves Date: Wed, 6 Apr 2011 18:07:39 -0700 Subject: [PATCH] Clippy sez you might want a parameter there --- src/main/java/com/samskivert/util/GenUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/samskivert/util/GenUtil.java b/src/main/java/com/samskivert/util/GenUtil.java index 733cae83..360337bc 100644 --- a/src/main/java/com/samskivert/util/GenUtil.java +++ b/src/main/java/com/samskivert/util/GenUtil.java @@ -89,7 +89,7 @@ public class GenUtil return buf.toString(); } else if (type instanceof TypeVariable) { - return ((TypeVariable)type).getName(); + return ((TypeVariable)type).getName(); } else { throw new IllegalArgumentException("Can't generate simple name [type=" + type +