From a0725510dcf18e179d06f84e4dbec0d570b28a84 Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Tue, 1 Jul 2008 00:12:39 +0000 Subject: [PATCH] IN PROGRESS - issue SWF-720: Multiple checkboxes to Collection mapping http://jira.springframework.org/browse/SWF-720 --- .../java/org/springframework/webflow/engine/ViewState.java | 2 +- .../org/springframework/webflow/mvc/view/AbstractMvcView.java | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/engine/ViewState.java b/spring-webflow/src/main/java/org/springframework/webflow/engine/ViewState.java index cb2e23f3..79ea34c1 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/engine/ViewState.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/engine/ViewState.java @@ -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); diff --git a/spring-webflow/src/main/java/org/springframework/webflow/mvc/view/AbstractMvcView.java b/spring-webflow/src/main/java/org/springframework/webflow/mvc/view/AbstractMvcView.java index 3999cb29..e3d7b184 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/mvc/view/AbstractMvcView.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/mvc/view/AbstractMvcView.java @@ -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;