Attached is a small patch for MethodUtils.java. It simply changes the
visibility of getMatchingAccessibleMethod() from private to public.
This is needed for a patch I submitted for digester, so I'm hoping to
get it into the 1.5 release.
I have twice previously submitted this patch using the [PATCH] mechanism
in the subject, but have yet to have any action taken on it. Should I
resubmit it, enter a bugzilla bug, or ?
Thanks and keep up the good work.
Greg
robert burrell donkin wrote:
> release plan
> ============
>
> release manager: scott sanders
> version number: 1.5
> features: localization support and bug fixes
> to do: fix bug #12458 (since no one's volunteered) i'll take
> a look at this
> fix bug #12728 scott - you're handling this.
> (i'd personally be happy to release
> without a test case for this one)
> close bug #12331 unless the poster comes back with
> some details i'll going to close this
> i'd like to freeze new features now and aim to be have the final
> release vote sometime monday. we'll move forward by lazy consensus -
> so speak now or forever hold your tongue...
>
> over to you, scott.
>
> - robert
>
>
> --
> To unsubscribe, e-mail:
> <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail:
> <mailto:[EMAIL PROTECTED]>
Index: MethodUtils.java
===================================================================
RCS file:
/home/cvspublic/jakarta-commons/beanutils/src/java/org/apache/commons/beanutils/MethodUtils.java,v
retrieving revision 1.14
diff -u -r1.14 MethodUtils.java
--- MethodUtils.java 22 Sep 2002 21:45:35 -0000 1.14
+++ MethodUtils.java 27 Sep 2002 17:39:51 -0000
@@ -540,7 +540,7 @@
* @param methodName find method with this name
* @param parameterTypes find method with compatible parameters
*/
- private static Method getMatchingAccessibleMethod(
+ public static Method getMatchingAccessibleMethod(
Class clazz,
String methodName,
Class[] parameterTypes) {
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>