From 753d0b0c911985621136ffd820589456beab3041 Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Fri, 11 Dec 2009 18:19:43 +0000 Subject: [PATCH] removed generic warning --- .../java/org/springframework/core/convert/TypeDescriptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.springframework.core/src/main/java/org/springframework/core/convert/TypeDescriptor.java b/org.springframework.core/src/main/java/org/springframework/core/convert/TypeDescriptor.java index 0a4ec7188d..7012842ad9 100644 --- a/org.springframework.core/src/main/java/org/springframework/core/convert/TypeDescriptor.java +++ b/org.springframework.core/src/main/java/org/springframework/core/convert/TypeDescriptor.java @@ -84,7 +84,7 @@ public class TypeDescriptor { * @param methodParameter the MethodParameter to wrap * @param type the specific type to expose (may be an array/collection element) */ - protected TypeDescriptor(MethodParameter methodParameter, Class type) { + protected TypeDescriptor(MethodParameter methodParameter, Class type) { Assert.notNull(methodParameter, "MethodParameter must not be null"); this.methodParameter = methodParameter; this.type = type;