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

Manik Surtani msurtani at jboss.com
Tue Sep 5 07:24:45 EDT 2006


  User: msurtani
  Date: 06/09/05 07:24:45

  Modified:    src/org/jboss/cache/factories  InterceptorChainFactory.java
  Log:
  updated UT accordingly
  
  Revision  Changes    Path
  1.28      +2 -2      JBossCache/src/org/jboss/cache/factories/InterceptorChainFactory.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: InterceptorChainFactory.java
  ===================================================================
  RCS file: /cvsroot/jboss/JBossCache/src/org/jboss/cache/factories/InterceptorChainFactory.java,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -b -r1.27 -r1.28
  --- InterceptorChainFactory.java	5 Sep 2006 11:03:26 -0000	1.27
  +++ InterceptorChainFactory.java	5 Sep 2006 11:24:45 -0000	1.28
  @@ -673,7 +673,7 @@
         return sb.toString();
      }
   
  -   public static List asList(Interceptor interceptor)
  +   public static List<Interceptor> asList(Interceptor interceptor)
      {
         if (interceptor == null)
         {
  @@ -685,7 +685,7 @@
         {
            num++;
         }
  -      List retval = new ArrayList(num);
  +      List<Interceptor> retval = new ArrayList<Interceptor>(num);
         tmp = interceptor;
         num = 0;
         do
  
  
  



More information about the jboss-cvs-commits mailing list