IN PROGRESS - issue SWF-720: Multiple checkboxes to Collection mapping

http://jira.springframework.org/browse/SWF-720
This commit is contained in:
Keith Donald
2008-07-01 00:12:39 +00:00
parent 50921e0f88
commit a0725510dc
2 changed files with 3 additions and 3 deletions

View File

@@ -251,7 +251,7 @@ public class ViewState extends TransitionableState {
while (it.hasNext()) {
ViewVariable variable = (ViewVariable) it.next();
if (logger.isDebugEnabled()) {
logger.debug("Destroying " + variable);
logger.debug("Restoring " + variable);
}
variable.restore(context);

View File

@@ -108,8 +108,8 @@ public abstract class AbstractMvcView implements View {
}
/**
* Sets the formatter registry to use to expose formatters for field values.
* @param formatterRegistry the formatter registry
* Sets the service to use to expose formatters for field values.
* @param conversionService the conversion service
*/
public void setConversionService(ConversionService conversionService) {
this.conversionService = conversionService;