From afee5469730b7b76e0ca63264d1a0bdbe1c65b48 Mon Sep 17 00:00:00 2001 From: Sam Brannen Date: Sat, 7 Mar 2015 22:27:11 +0100 Subject: [PATCH] Delete unused method in TypeDescriptor --- .../java/org/springframework/core/convert/TypeDescriptor.java | 4 ---- 1 file changed, 4 deletions(-) diff --git a/spring-core/src/main/java/org/springframework/core/convert/TypeDescriptor.java b/spring-core/src/main/java/org/springframework/core/convert/TypeDescriptor.java index ea32862362..ae68cab903 100644 --- a/spring-core/src/main/java/org/springframework/core/convert/TypeDescriptor.java +++ b/spring-core/src/main/java/org/springframework/core/convert/TypeDescriptor.java @@ -437,10 +437,6 @@ public class TypeDescriptor implements Serializable { return narrow(mapValue, getMapValueTypeDescriptor()); } - private Class getType(TypeDescriptor typeDescriptor) { - return (typeDescriptor != null ? typeDescriptor.getType() : null); - } - private TypeDescriptor narrow(Object value, TypeDescriptor typeDescriptor) { if (typeDescriptor != null) { return typeDescriptor.narrow(value);