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

Gavin King gavin.king at jboss.com
Tue Oct 10 15:37:38 EDT 2006


  User: gavin   
  Date: 06/10/10 15:37:38

  Modified:    src/main/org/jboss/seam/interceptors 
                        ManagedEntityIdentityInterceptor.java
  Log:
  removed @Mutable, use Mutable interface instead
  
  Revision  Changes    Path
  1.6       +1 -1      jboss-seam/src/main/org/jboss/seam/interceptors/ManagedEntityIdentityInterceptor.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ManagedEntityIdentityInterceptor.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/interceptors/ManagedEntityIdentityInterceptor.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -b -r1.5 -r1.6
  --- ManagedEntityIdentityInterceptor.java	28 Sep 2006 22:30:15 -0000	1.5
  +++ ManagedEntityIdentityInterceptor.java	10 Oct 2006 19:37:38 -0000	1.6
  @@ -81,7 +81,7 @@
      
      public void entityRefsToIds(InvocationContext ctx) throws Exception
      {      
  -      Set<String> pcs = TouchedContexts.instance();
  +      Set<String> pcs = TouchedContexts.instance().getTouchedContexts();
         if ( pcs!=null && pcs.size()>0 )
         {
            Object bean = ctx.getTarget();
  
  
  



More information about the jboss-cvs-commits mailing list