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

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


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

  Modified:    src/org/jboss/cache/marshall   ObjectStreamFactory.java
                        JavaObjectStreamFactory.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.4       +1 -1      JBossCache/src/org/jboss/cache/marshall/ObjectStreamFactory.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ObjectStreamFactory.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/marshall/ObjectStreamFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- ObjectStreamFactory.java	12 Jan 2007 17:02:02 -0000	1.3
  +++ ObjectStreamFactory.java	23 May 2007 10:28:55 -0000	1.4
  @@ -1,10 +1,10 @@
   package org.jboss.cache.marshall;
   
   import java.io.IOException;
  +import java.io.InputStream;
   import java.io.ObjectInputStream;
   import java.io.ObjectOutputStream;
   import java.io.OutputStream;
  -import java.io.InputStream;
   
   /**
    * ObjectStreamFactory
  
  
  
  1.4       +2 -2      JBossCache/src/org/jboss/cache/marshall/JavaObjectStreamFactory.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: JavaObjectStreamFactory.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/marshall/JavaObjectStreamFactory.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- JavaObjectStreamFactory.java	12 Jan 2007 17:02:02 -0000	1.3
  +++ JavaObjectStreamFactory.java	23 May 2007 10:28:55 -0000	1.4
  @@ -4,10 +4,10 @@
   
   import java.io.ByteArrayInputStream;
   import java.io.IOException;
  +import java.io.InputStream;
   import java.io.ObjectInputStream;
   import java.io.ObjectOutputStream;
   import java.io.OutputStream;
  -import java.io.InputStream;
   
   /**
    * Standard Java implementation of ObjectStreamFactory 
  
  
  



More information about the jboss-cvs-commits mailing list