Delete unused method in TypeDescriptor

This commit is contained in:
Sam Brannen 2015-03-07 22:27:11 +01:00
parent d90cee78ef
commit afee546973
1 changed files with 0 additions and 4 deletions

View File

@ -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);