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

Manik Surtani msurtani at jboss.com
Sat Dec 30 14:48:47 EST 2006


  User: msurtani
  Date: 06/12/30 14:48:47

  Modified:    tests/functional/org/jboss/cache/interceptors 
                        EvictionInterceptorTest.java
  Log:
  Genericised, autoboxed
  
  Revision  Changes    Path
  1.19      +2 -2      JBossCache/tests/functional/org/jboss/cache/interceptors/EvictionInterceptorTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: EvictionInterceptorTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/functional/org/jboss/cache/interceptors/EvictionInterceptorTest.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -b -r1.18 -r1.19
  --- EvictionInterceptorTest.java	30 Dec 2006 17:50:07 -0000	1.18
  +++ EvictionInterceptorTest.java	30 Dec 2006 19:48:47 -0000	1.19
  @@ -217,7 +217,7 @@
         fqn = Fqn.fromString("/d/e/g");
         for (int i = 0; i < 1000; i++)
         {
  -         key = new Integer(i);
  +         key = i;
   
            cache.put("/d/e/g", key, "");
   
  @@ -247,7 +247,7 @@
   
         for (int i = 0; i < 1000; i++)
         {
  -         key = new Integer(i);
  +         key = i;
   
            cache.put(fqn.toString(), key, "");
   
  
  
  



More information about the jboss-cvs-commits mailing list