the asMap() calls are throwing me :-) fixed

This commit is contained in:
Keith Donald
2007-04-02 22:04:17 +00:00
parent cdc725a6a7
commit 120095c27e

View File

@@ -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 {