From e8d33bfe5e3f09f4eda10d29d456ffe8e185d509 Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Fri, 4 May 2007 18:59:47 +0000 Subject: [PATCH] slight reordering of cleanup stmts --- .../webflow/executor/jsf/FlowExecutionHolderUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowExecutionHolderUtils.java b/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowExecutionHolderUtils.java index 6e7d7490..c9e5d1ed 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowExecutionHolderUtils.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowExecutionHolderUtils.java @@ -107,8 +107,8 @@ public class FlowExecutionHolderUtils { */ public static void cleanupCurrentFlowExecution(FacesContext context) { if (isFlowExecutionRestored(context)) { - getFlowExecutionHolder(context).unlockFlowExecutionIfNecessary(); FlowExecutionContextHolder.setFlowExecutionContext(null); + getFlowExecutionHolder(context).unlockFlowExecutionIfNecessary(); context.getExternalContext().getRequestMap().remove(getFlowExecutionHolderKey()); } }