[jboss-cvs] jboss-seam/src/main/org/jboss/seam/contexts ...
Michael Youngstrom
youngm at gmail.com
Tue Jul 17 15:50:24 EDT 2007
User: myoungstrom
Date: 07/07/17 15:50:24
Modified: src/main/org/jboss/seam/contexts Lifecycle.java
Log:
JBSEAM-1681
Revision Changes Path
1.106 +2 -2 jboss-seam/src/main/org/jboss/seam/contexts/Lifecycle.java
(In the diff below, changes in quantity of whitespace are not shown.)
Index: Lifecycle.java
===================================================================
RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/Lifecycle.java,v
retrieving revision 1.105
retrieving revision 1.106
diff -u -b -r1.105 -r1.106
--- Lifecycle.java 23 Jun 2007 08:24:23 -0000 1.105
+++ Lifecycle.java 17 Jul 2007 19:50:23 -0000 1.106
@@ -81,7 +81,7 @@
Contexts.sessionContext.set( new BasicContext(ScopeType.SESSION) );
Contexts.conversationContext.set( new BasicContext(ScopeType.CONVERSATION) );
Contexts.businessProcessContext.set( new BusinessProcessContext() );
- Contexts.applicationContext.set( new ApplicationContext(application) );
+ Contexts.applicationContext.set( new ApplicationContext(getApplication()) );
}
public static void endCall()
@@ -104,7 +104,7 @@
public static void mockApplication()
{
- Contexts.applicationContext.set( new ApplicationContext(application) );
+ Contexts.applicationContext.set( new ApplicationContext(getApplication()) );
}
public static void unmockApplication()
More information about the jboss-cvs-commits
mailing list