@ -1,5 +1,5 @@
@@ -1,5 +1,5 @@
/ *
* Copyright 2002 - 2009 the original author or authors .
* Copyright 2002 - 201 0 the original author or authors .
*
* Licensed under the Apache License , Version 2 . 0 ( the "License" ) ;
* you may not use this file except in compliance with the License .
@ -450,19 +450,19 @@ public class GenericConversionService implements ConversionService, ConverterReg
@@ -450,19 +450,19 @@ public class GenericConversionService implements ConversionService, ConverterReg
for ( ConditionalGenericConverter conditional : this . conditionalConverters ) {
if ( conditional . matches ( sourceType , targetType ) ) {
if ( logger . isDebugEnabled ( ) ) {
logger . debug ( "Converter lookup [MATCHED] " + conditional ) ;
logger . debug ( "Conditional con verter lookup [MATCHED] " + conditional ) ;
}
return conditional ;
}
else {
if ( logger . isDebugEnabled ( ) ) {
logger . debug ( "Converter lookup [DID NOT MATCH] " + conditional ) ;
logger . debug ( "Conditional con verter lookup [DID NOT MATCH] " + conditional ) ;
}
}
}
}
if ( logger . isDebugEnabled ( ) ) {
logger . debug ( "C onverter lookup [MATCHED] " + this . defaultConverter ) ;
if ( this . defaultConverter ! = null & & logger . isDebugEnabled ( ) ) {
logger . debug ( "Default c onverter lookup [MATCHED] " + this . defaultConverter ) ;
}
return this . defaultConverter ;
}