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()); }