git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2963 50f2f4bb-b051-0410-bef5-90022cba6387
This commit is contained in:
Keith Donald 2010-02-12 00:43:27 +00:00
parent 63b93b3bab
commit d2a33d488b
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ public class EvalTag extends HtmlEscapingAwareTag {
context.addPropertyAccessor(new JspPropertyAccessor(this.pageContext)); context.addPropertyAccessor(new JspPropertyAccessor(this.pageContext));
ConversionService conversionService = getConversionService(); ConversionService conversionService = getConversionService();
if (conversionService != null) { if (conversionService != null) {
context.setTypeConverter(new StandardTypeConverter()); context.setTypeConverter(new StandardTypeConverter(conversionService));
} }
return context; return context;
} }