From 120095c27e96d835049f0c87a8375fde436f0231 Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Mon, 2 Apr 2007 22:04:17 +0000 Subject: [PATCH] the asMap() calls are throwing me :-) fixed --- .../webflow/executor/jsf/FlowExecutionPropertyResolver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowExecutionPropertyResolver.java b/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowExecutionPropertyResolver.java index 591e87b0..675b2a4a 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowExecutionPropertyResolver.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/executor/jsf/FlowExecutionPropertyResolver.java @@ -135,7 +135,7 @@ public class FlowExecutionPropertyResolver extends PropertyResolver { if (FLASH_SCOPE_PROPERTY.equals(property)) { return execution.getActiveSession().getFlashMap().asMap(); } else if (FLOW_SCOPE_PROPERTY.equals(property)) { - return execution.getActiveSession().getFlashMap().asMap(); + return execution.getActiveSession().getScope().asMap(); } else if (CONVERSATION_SCOPE_PROPERTY.equals(property)) { return execution.getConversationScope().asMap(); } else {