correctly handle ParseException from Formatter for String->String case (SPR-8944)

This commit is contained in:
Juergen Hoeller 2011-12-22 16:30:22 +01:00
parent 3d5e245374
commit d331c5d1c9
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ class TypeConverterDelegate {
}
if (firstAttemptEx != null) {
if (editor == null) {
if (editor == null && convertedValue == newValue) {
throw firstAttemptEx;
}
logger.debug("Original ConversionService attempt failed - ignored since " +