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

Gavin King gavin.king at jboss.com
Sun Mar 18 13:53:52 EDT 2007


  User: gavin   
  Date: 07/03/18 13:53:52

  Modified:    src/main/org/jboss/seam/util  EL.java
  Log:
  fixed a bug that occurred when an Expression was used in a faces request, and then later used from an async request
  
  Revision  Changes    Path
  1.4       +5 -0      jboss-seam/src/main/org/jboss/seam/util/EL.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: EL.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/util/EL.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- EL.java	13 Jan 2007 05:36:06 -0000	1.3
  +++ EL.java	18 Mar 2007 17:53:52 -0000	1.4
  @@ -1,4 +1,5 @@
   package org.jboss.seam.util;
  +
   import javax.el.BeanELResolver;
   import javax.el.CompositeELResolver;
   import javax.el.ELContext;
  @@ -9,14 +10,18 @@
   import javax.el.MapELResolver;
   import javax.el.ResourceBundleELResolver;
   import javax.el.VariableMapper;
  +
   import org.jboss.seam.jsf.SeamELFunctionMapper;
   import org.jboss.seam.jsf.SeamELResolver;
  +
   import com.sun.el.ExpressionFactoryImpl;
   import com.sun.el.lang.VariableMapperImpl;
  +
   public class EL
   {
      private static final ELResolver EL_RESOLVER = createELResolver();
      public static final ELContext EL_CONTEXT = createELContext();
  +   
      public static final ExpressionFactory EXPRESSION_FACTORY = new ExpressionFactoryImpl();
      
      private static ELResolver createELResolver()
  
  
  



More information about the jboss-cvs-commits mailing list