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

Gavin King gavin.king at jboss.com
Tue May 1 12:43:52 EDT 2007


  User: gavin   
  Date: 07/05/01 12:43:52

  Modified:    src/main/org/jboss/seam/interceptors 
                        BusinessProcessInterceptor.java
  Log:
  migrate to unified EL everywhere
  
  Revision  Changes    Path
  1.53      +2 -2      jboss-seam/src/main/org/jboss/seam/interceptors/BusinessProcessInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BusinessProcessInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/BusinessProcessInterceptor.java,v
  retrieving revision 1.52
  retrieving revision 1.53
  diff -u -b -r1.52 -r1.53
  --- BusinessProcessInterceptor.java	29 Mar 2007 16:00:50 -0000	1.52
  +++ BusinessProcessInterceptor.java	1 May 2007 16:43:52 -0000	1.53
  @@ -28,7 +28,7 @@
    * Interceptor which handles interpretation of jBPM-related annotations.
    *
    * @author <a href="mailto:steve at hibernate.org">Steve Ebersole </a>
  - * @version $Revision: 1.52 $
  + * @version $Revision: 1.53 $
    */
   @Interceptor(stateless=true,
                around={ValidationInterceptor.class, BijectionInterceptor.class})
  @@ -119,7 +119,7 @@
         Object id;
         if ( Strings.isEmpty(paramName) )
         {
  -         id = Expressions.instance().createValueBinding(el).getValue();
  +         id = Expressions.instance().createValueExpression(el).getValue();
         }
         else
         {
  
  
  



More information about the jboss-cvs-commits mailing list