[jboss-cvs] jboss-seam/src/main/org/jboss/seam/core ...

Norman Richards norman.richards at jboss.com
Fri Dec 14 22:41:52 EST 2007


  User: nrichards
  Date: 07/12/14 22:41:52

  Modified:    src/main/org/jboss/seam/core  Expressions.java
  Log:
  JBSEAM-2357
  
  Revision  Changes    Path
  1.39      +8 -9      jboss-seam/src/main/org/jboss/seam/core/Expressions.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Expressions.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Expressions.java,v
  retrieving revision 1.38
  retrieving revision 1.39
  diff -u -b -r1.38 -r1.39
  --- Expressions.java	24 Jun 2007 22:24:50 -0000	1.38
  +++ Expressions.java	15 Dec 2007 03:41:52 -0000	1.39
  @@ -1,8 +1,7 @@
  -//$Id: Expressions.java,v 1.38 2007/06/24 22:24:50 gavin Exp $
  +//$Id: Expressions.java,v 1.39 2007/12/15 03:41:52 nrichards Exp $
   package org.jboss.seam.core;
   
   import static org.jboss.seam.annotations.Install.BUILT_IN;
  -import static org.jboss.seam.el.EL.EL_CONTEXT;
   
   import java.io.Serializable;
   
  @@ -15,6 +14,7 @@
   import org.jboss.seam.annotations.Name;
   import org.jboss.seam.annotations.Scope;
   import org.jboss.seam.annotations.intercept.BypassInterceptors;
  +import org.jboss.seam.el.EL;
   import org.jboss.seam.el.SeamExpressionFactory;
   
   /**
  @@ -41,11 +41,10 @@
      
      /**
       * Get an appropriate ELContext. If there is an active JSF request,
  -    * use JSF's ELContext. Otherwise, use one that we created.
  +    * use JSF's ELContext. Otherwise, use one that we create.
       */
  -   public ELContext getELContext()
  -   {
  -      return EL_CONTEXT;
  +   public ELContext getELContext() {
  +       return EL.createELContext();
      }
   
      /**
  
  
  



More information about the jboss-cvs-commits mailing list