[jboss-cvs] JBossCache/tests/perf/org/jboss/cache/manualtests ...

Manik Surtani manik at jboss.org
Wed May 23 06:28:49 EDT 2007


  User: msurtani
  Date: 07/05/23 06:28:49

  Modified:    tests/perf/org/jboss/cache/manualtests 
                        CacheMemoryLeakTest.java
  Log:
  Initiated a bunch of performance fixes, including replacing CopyOnWriteArraySets with org.jboss.cache.util.concurrent.ConcurrentHashSet.
  Also ran an imports optimiser on the code base - there were a lot of unused imports floating about.
  
  Revision  Changes    Path
  1.2       +3 -6      JBossCache/tests/perf/org/jboss/cache/manualtests/CacheMemoryLeakTest.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: CacheMemoryLeakTest.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/tests/perf/org/jboss/cache/manualtests/CacheMemoryLeakTest.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -b -r1.1 -r1.2
  --- CacheMemoryLeakTest.java	1 Mar 2007 19:09:32 -0000	1.1
  +++ CacheMemoryLeakTest.java	23 May 2007 10:28:49 -0000	1.2
  @@ -1,14 +1,11 @@
   package org.jboss.cache.manualtests;
   
   import junit.framework.TestCase;
  -import org.jboss.cache.pojo.PojoCache;
  -import org.jboss.cache.pojo.PojoCacheFactory;
  -import org.jboss.cache.pojo.test.Person;
  -import org.jboss.cache.config.Configuration;
  -import org.jboss.cache.Fqn;
   import org.jboss.cache.Cache;
  -import org.jboss.cache.CacheFactory;
   import org.jboss.cache.DefaultCacheFactory;
  +import org.jboss.cache.Fqn;
  +import org.jboss.cache.config.Configuration;
  +import org.jboss.cache.pojo.test.Person;
   
   public class CacheMemoryLeakTest extends TestCase
   {
  
  
  



More information about the jboss-cvs-commits mailing list