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

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


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

  Modified:    src/main/org/jboss/seam/faces  FacesExpressions.java
  Log:
  JBSEAM-2357
  
  Revision  Changes    Path
  1.5       +2 -3      jboss-seam/src/main/org/jboss/seam/faces/FacesExpressions.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: FacesExpressions.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/faces/FacesExpressions.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -b -r1.4 -r1.5
  --- FacesExpressions.java	24 Jun 2007 22:24:50 -0000	1.4
  +++ FacesExpressions.java	15 Dec 2007 03:41:53 -0000	1.5
  @@ -1,8 +1,7 @@
  -//$Id: FacesExpressions.java,v 1.4 2007/06/24 22:24:50 gavin Exp $
  +//$Id: FacesExpressions.java,v 1.5 2007/12/15 03:41:53 nrichards Exp $
   package org.jboss.seam.faces;
   
   import static org.jboss.seam.annotations.Install.FRAMEWORK;
  -import static org.jboss.seam.el.EL.EL_CONTEXT;
   
   import javax.el.ELContext;
   import javax.faces.context.FacesContext;
  @@ -34,7 +33,7 @@
      public ELContext getELContext()
      {
         FacesContext facesContext = FacesContext.getCurrentInstance();
  -      return facesContext==null ? EL_CONTEXT : facesContext.getELContext();
  +      return facesContext==null ? super.getELContext() : facesContext.getELContext();
      }
      
      @Override
  
  
  



More information about the jboss-cvs-commits mailing list