|
From: Tim P <ti...@us...> - 2008-11-13 00:01:48
|
Update of /cvsroot/webmacro/webmacro/src/org/webmacro/engine In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23718/src/org/webmacro/engine Modified Files: MethodWrapper.java Log Message: Unnecessary cast Index: MethodWrapper.java =================================================================== RCS file: /cvsroot/webmacro/webmacro/src/org/webmacro/engine/MethodWrapper.java,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** MethodWrapper.java 12 Jun 2003 00:47:45 -0000 1.4 --- MethodWrapper.java 13 Nov 2008 00:01:41 -0000 1.5 *************** *** 72,76 **** for (int i = 0; i < _methods.length; i++) { ! Method m = (Method) _methods[i]; Class[] sig = m.getParameterTypes(); if (IntrospectionUtils.matches(sig, types)) --- 72,76 ---- for (int i = 0; i < _methods.length; i++) { ! Method m = _methods[i]; Class[] sig = m.getParameterTypes(); if (IntrospectionUtils.matches(sig, types)) |