You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by im...@apache.org on 2007/09/28 11:59:16 UTC

svn commit: r580279 - /myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/jsf/FlashScopePhaseListener.java

Author: imario
Date: Fri Sep 28 02:59:15 2007
New Revision: 580279

URL: http://svn.apache.org/viewvc?rev=580279&view=rev
Log:
avoid creating a conversation manager if none exists yet

Modified:
    myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/jsf/FlashScopePhaseListener.java

Modified: myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/jsf/FlashScopePhaseListener.java
URL: http://svn.apache.org/viewvc/myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/jsf/FlashScopePhaseListener.java?rev=580279&r1=580278&r2=580279&view=diff
==============================================================================
--- myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/jsf/FlashScopePhaseListener.java (original)
+++ myfaces/orchestra/trunk/core/src/main/java/org/apache/myfaces/orchestra/conversation/jsf/FlashScopePhaseListener.java Fri Sep 28 02:59:15 2007
@@ -74,7 +74,7 @@
 			}
 		}
 
-		ConversationManager conversationManager = ConversationManager.getInstance();
+		ConversationManager conversationManager = ConversationManager.getInstance(false);
 		if (conversationManager == null)
 		{
 			return;