From 099fb6666002a561f8425093db03176a5d76cd5d Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Thu, 20 Mar 2008 06:44:53 +0000 Subject: [PATCH] polish --- .../java/org/springframework/webflow/mvc/MvcView.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/mvc/MvcView.java b/spring-webflow/src/main/java/org/springframework/webflow/mvc/MvcView.java index 654b725b..6c6a711c 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/mvc/MvcView.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/mvc/MvcView.java @@ -115,10 +115,6 @@ class MvcView implements View { } } - private boolean onlyPropertyNotFoundErrors() { - return mappingResults.getResults(PROPERTY_NOT_FOUND_ERRORS).size() == mappingResults.getErrorResults().size(); - } - public boolean eventSignaled() { return postbackSuccess && eventId != null; } @@ -191,6 +187,10 @@ class MvcView implements View { } } + private boolean onlyPropertyNotFoundErrors() { + return mappingResults.getResults(PROPERTY_NOT_FOUND_ERRORS).size() == mappingResults.getErrorResults().size(); + } + private void determineEventId(RequestContext context) { eventId = findParameter("_eventId", context.getRequestParameters()); }