Bug fix - needed to set ConversionService on ActionResultExposer

This commit is contained in:
Jeremy Grelle
2008-02-06 21:06:01 +00:00
parent d9e69c2be9
commit e7bc4c95d6

View File

@@ -123,4 +123,8 @@ public class ActionResultExposer implements Serializable {
}
return conversionService.getConversionExecutor(value.getClass(), targetType).execute(value);
}
public void setConversionService(ConversionService conversionService) {
this.conversionService = conversionService;
}
}