Author: tv
Date: Tue Nov 14 12:41:36 2006
New Revision: 474969

URL: http://svn.apache.org/viewvc?view=rev&rev=474969
Log:
Fixed TORQUE-63

Modified:
    
db/torque/runtime/trunk/src/java/org/apache/torque/manager/MethodCacheKey.java

Modified: 
db/torque/runtime/trunk/src/java/org/apache/torque/manager/MethodCacheKey.java
URL: 
http://svn.apache.org/viewvc/db/torque/runtime/trunk/src/java/org/apache/torque/manager/MethodCacheKey.java?view=diff&rev=474969&r1=474968&r2=474969
==============================================================================
--- 
db/torque/runtime/trunk/src/java/org/apache/torque/manager/MethodCacheKey.java 
(original)
+++ 
db/torque/runtime/trunk/src/java/org/apache/torque/manager/MethodCacheKey.java 
Tue Nov 14 12:41:36 2006
@@ -29,9 +29,6 @@
  */
 public class MethodCacheKey implements Serializable
 {
-    //private static final Category log =
-    //    Category.getInstance("org.apache.torque");
-
     /**
      * Serial version
      */
@@ -150,7 +147,7 @@
     }
 
     /**
-     * Initialize key for method with more than two arguments.
+     * Initialize key for method with more than three arguments.
      *
      * @param keys Serializable[] where
      * [0]=>the Object on which the method is invoked
@@ -170,7 +167,7 @@
                 this.arg2 = keys[3];
                 if (n > 2)
                 {
-                    this.arg2 = keys[4];
+                    this.arg3 = keys[4];
                     if (n > 3)
                     {
                         this.moreThanThree = keys;



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to