[jboss-cvs] JBossCache/tests/functional/org/jboss/cache/notifications ...

Manik Surtani manik at jboss.org
Tue Jul 3 06:57:51 EDT 2007


  User: msurtani
  Date: 07/07/03 06:57:51

  Modified:    tests/functional/org/jboss/cache/notifications 
                        NotificationThreadTest.java
  Log:
  Listeners should be public
  
  Revision  Changes    Path
  1.2       +34 -32    JBossCache/tests/functional/org/jboss/cache/notifications/NotificationThreadTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: NotificationThreadTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/notifications/NotificationThreadTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- NotificationThreadTest.java	28 Jun 2007 16:53:36 -0000	1.1
  +++ NotificationThreadTest.java	3 Jul 2007 10:57:51 -0000	1.2
  @@ -160,11 +160,11 @@
         // now test for exceptions
         for (Throwable e : listener.exceptions) throw e;
      }
  -}
   
  - at CacheListener
  -class TestCacheListener
  -{
  +
  +   @CacheListener
  +   public class TestCacheListener
  +   {
      boolean sameThreadExpected;
      Thread mainThread;
      List<Throwable> exceptions = new LinkedList<Throwable>();
  @@ -197,4 +197,6 @@
            exceptions.add(t);
         }
      }
  +   }
  +
   }
  
  
  



More information about the jboss-cvs-commits mailing list