]> gcc.gnu.org Git - gcc.git/commitdiff
Class.h (_getMethods): Correctly declare as private, not public.
authorTom Tromey <tromey@cygnus.com>
Wed, 5 Jan 2000 22:29:27 +0000 (22:29 +0000)
committerTom Tromey <tromey@gcc.gnu.org>
Wed, 5 Jan 2000 22:29:27 +0000 (22:29 +0000)
* java/lang/Class.h (_getMethods): Correctly declare as private,
not public.

From-SVN: r31246

libjava/ChangeLog
libjava/java/lang/Class.h

index f0d0957c0695879b139a64861e28aa1928f14529..e9f04830a5a93d41fa7855def425e216e1d3fe29 100644 (file)
@@ -1,5 +1,8 @@
 2000-01-05  Tom Tromey  <tromey@cygnus.com>
 
+       * java/lang/Class.h (_getMethods): Correctly declare as private,
+       not public.
+
        * java/lang/Class.h (_getMethods): Declare.
        * java/lang/Class.java (_getMethods): Declare.
        * java/lang/natClass.cc (getDeclaringClass): Always return NULL.
index 573683de215067d154dbc00a0adc39f61857350a..ce84d5ca2d105c737158dee3932c1ce3061201c3 100644 (file)
@@ -97,6 +97,8 @@ private:
   jint _getFields (JArray<java::lang::reflect::Field *> *result, jint offset);
   JArray<java::lang::reflect::Constructor *> *_getConstructors (jboolean);
   java::lang::reflect::Field *getField (jstring, jint);
+  jint _getMethods (JArray<java::lang::reflect::Method *> *result,
+                   jint offset);
 public:
   JArray<java::lang::reflect::Field *> *getFields (void);
 
@@ -105,8 +107,6 @@ public:
   void getSignature (java::lang::StringBuffer *buffer);
   static jstring getSignature (JArray<jclass> *, jboolean is_constructor);
   java::lang::reflect::Method *getMethod (jstring, JArray<jclass> *);
-  jint _getMethods (JArray<java::lang::reflect::Method *> *result,
-                   jint offset);
   JArray<java::lang::reflect::Method *> *getMethods (void);
 
   jint getModifiers (void)
This page took 0.200044 seconds and 5 git commands to generate.