This commit is contained in:
Keith Donald
2008-03-20 06:44:53 +00:00
parent f9d6baa799
commit 099fb66660

View File

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