[jboss-cvs] JBossCache/src/org/jboss/cache/aop ...

Manik Surtani msurtani at jboss.com
Thu Jul 13 05:32:52 EDT 2006


  User: msurtani
  Date: 06/07/13 05:32:52

  Modified:    src/org/jboss/cache/aop  PojoCache.java
  Log:
  Merged in a null check from 140 branch
  
  Revision  Changes    Path
  1.26      +2 -1      JBossCache/src/org/jboss/cache/aop/PojoCache.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: PojoCache.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/aop/PojoCache.java,v
  retrieving revision 1.25
  retrieving revision 1.26
  diff -u -b -r1.25 -r1.26
  --- PojoCache.java	12 Jul 2006 13:35:34 -0000	1.25
  +++ PojoCache.java	13 Jul 2006 09:32:52 -0000	1.26
  @@ -168,6 +168,7 @@
      public void resetUndoOp()
      {
         List list = (List)undoListLocal_.get();
  +      if(list != null)
         list.clear();
         hasSynchronizationHandler_.set(null);
      }
  
  
  



More information about the jboss-cvs-commits mailing list