For PR java/3562:
* java/lang/Class.h (Class(void)): Now private. Removed implementation. From dmorsberger@sensysdl.com. From-SVN: r43781
This commit is contained in:
parent
01f9e964bd
commit
0bedbbdf1b
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2001-07-05 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
For PR java/3562:
|
||||
* java/lang/Class.h (Class(void)): Now private. Removed
|
||||
implementation. From dmorsberger@sensysdl.com.
|
||||
|
||||
2001-07-02 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
Fix for PR bootstrap/3281:
|
||||
|
|
|
@ -207,8 +207,6 @@ public:
|
|||
// finalization
|
||||
void finalize ();
|
||||
|
||||
Class () {};
|
||||
|
||||
// This constructor is used to create Class object for the primitive
|
||||
// types. See prims.cc.
|
||||
Class (jobject cname, jbyte sig, jint len, jobject array_vtable)
|
||||
|
@ -238,6 +236,8 @@ public:
|
|||
|
||||
private:
|
||||
|
||||
Class ();
|
||||
|
||||
void checkMemberAccess (jint flags);
|
||||
|
||||
void initializeClass (void);
|
||||
|
|
Loading…
Add table
Reference in a new issue