Author: sebb
Date: Sat Oct 20 06:12:00 2007
New Revision: 586709

URL: http://svn.apache.org/viewvc?rev=586709&view=rev
Log:
No need to synch on types, because now final

Modified:
    jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/reflect/Functor.java

Modified: 
jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/reflect/Functor.java
URL: 
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/reflect/Functor.java?rev=586709&r1=586708&r2=586709&view=diff
==============================================================================
--- jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/reflect/Functor.java 
(original)
+++ jakarta/jmeter/trunk/src/jorphan/org/apache/jorphan/reflect/Functor.java 
Sat Oct 20 06:12:00 2007
@@ -132,8 +132,8 @@
         * @param _methodName method name
         * @param types
         */
-       public Functor(Object _invokee, String _methodName, Class[] types) {
-               this(null, _invokee, _methodName, null, types);
+       public Functor(Object _invokee, String _methodName, Class[] _types) {
+               this(null, _invokee, _methodName, null, _types);
        }
 
        /**
@@ -145,8 +145,8 @@
         * @param _methodName method name
         * @param types
         */
-       public Functor(Class _clazz, String _methodName, Class[] types) {
-               this(_clazz, null, _methodName, null, types);
+       public Functor(Class _clazz, String _methodName, Class[] _types) {
+               this(_clazz, null, _methodName, null, _types);
        }
 
        /**
@@ -456,7 +456,6 @@
                return newArray;
        }
 
-       // TODO - should this be synchronised?
        private Class[] getTypes(Object[] _args) {
                if (types == null)
                {



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

Reply via email to