[jboss-cvs] CacheBenchFwk/src/org/cachebench/utils ...

Manik Surtani manik at jboss.org
Tue Mar 13 10:50:46 EDT 2007


  User: msurtani
  Date: 07/03/13 10:50:46

  Modified:    src/org/cachebench/utils  Instantiator.java
  Log:
  wc
  
  Revision  Changes    Path
  1.4       +19 -18    CacheBenchFwk/src/org/cachebench/utils/Instantiator.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Instantiator.java
  ===================================================================
  RCS file: /cvsroot/jboss/CacheBenchFwk/src/org/cachebench/utils/Instantiator.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- Instantiator.java	27 Dec 2005 05:30:52 -0000	1.3
  +++ Instantiator.java	13 Mar 2007 14:50:46 -0000	1.4
  @@ -6,12 +6,13 @@
   
   /**
    * @author Manik Surtani (manik at surtani.org)
  - * @version $Id: Instantiator.java,v 1.3 2005/12/27 05:30:52 imran Exp $
  + * @version $Id: Instantiator.java,v 1.4 2007/03/13 14:50:46 msurtani Exp $
    */
   public class Instantiator
   {
       private static Instantiator _singleton;
       private Log logger = LogFactory.getLog("org.cachebench.utils.Instantiator");
  +
       private Instantiator()
       {
       }
  @@ -24,7 +25,7 @@
       
       public Object createClass(String className) throws Exception
       {
  -        Class c = getClass().getClassLoader().loadClass( className );
  +      Class c = getClass().getClassLoader().loadClass(className);
           return c.newInstance();
       }
   }
  
  
  



More information about the jboss-cvs-commits mailing list