commit-classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Patch: FYI: Class bug fix


From: Tom Tromey
Subject: Patch: FYI: Class bug fix
Date: 25 Jan 2004 16:06:13 -0700
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50

I'm checking this in.  I noticed this while looking at an earlier
patch of Michael's.  (He didn't introduce it, it was there before.)

Tom

Index: ChangeLog
from  Tom Tromey  <address@hidden>

        * java/lang/Class.java (internalGetMethod): Now private.

Index: java/lang/Class.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/lang/Class.java,v
retrieving revision 1.15
diff -u -r1.15 Class.java
--- java/lang/Class.java 25 Jan 2004 18:25:09 -0000 1.15
+++ java/lang/Class.java 25 Jan 2004 23:14:12 -0000
@@ -689,7 +689,7 @@
    * Like <code>getMethod(String,Class[])</code> but without the security
    * checks and returns null instead of throwing NoSuchMethodException.
    */
-  public Method internalGetMethod(String methodName, Class[] args)
+  private Method internalGetMethod(String methodName, Class[] args)
   {
     Method match = matchMethod(getDeclaredMethods(true), methodName, args);
     if (match != null)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]