Browse Source

polish

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@4359 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/merge
Keith Donald 15 years ago
parent
commit
8b9196ab7c
  1. 5
      org.springframework.core/src/main/java/org/springframework/core/convert/support/GenericConversionService.java

5
org.springframework.core/src/main/java/org/springframework/core/convert/support/GenericConversionService.java

@ -458,14 +458,13 @@ public class GenericConversionService implements ConversionService, ConverterReg @@ -458,14 +458,13 @@ public class GenericConversionService implements ConversionService, ConverterReg
private void addInterfaceHierarchy(Class<?> interfaceType, LinkedList<Class<?>> classQueue) {
classQueue.addFirst(interfaceType);
for (Class<?> implementedInterface : interfaceType.getInterfaces()) {
addInterfaceHierarchy(implementedInterface, classQueue);
for (Class<?> inheritedInterface : interfaceType.getInterfaces()) {
addInterfaceHierarchy(inheritedInterface, classQueue);
}
}
private GenericConverter matchConverter(
MatchableConverters matchable, TypeDescriptor sourceFieldType, TypeDescriptor targetFieldType) {
if (matchable == null) {
return null;
}

Loading…
Cancel
Save