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>
|
2001-07-02 Tom Tromey <tromey@redhat.com>
|
||||||
|
|
||||||
Fix for PR bootstrap/3281:
|
Fix for PR bootstrap/3281:
|
||||||
|
|
|
@ -207,8 +207,6 @@ public:
|
||||||
// finalization
|
// finalization
|
||||||
void finalize ();
|
void finalize ();
|
||||||
|
|
||||||
Class () {};
|
|
||||||
|
|
||||||
// This constructor is used to create Class object for the primitive
|
// This constructor is used to create Class object for the primitive
|
||||||
// types. See prims.cc.
|
// types. See prims.cc.
|
||||||
Class (jobject cname, jbyte sig, jint len, jobject array_vtable)
|
Class (jobject cname, jbyte sig, jint len, jobject array_vtable)
|
||||||
|
@ -238,6 +236,8 @@ public:
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
Class ();
|
||||||
|
|
||||||
void checkMemberAccess (jint flags);
|
void checkMemberAccess (jint flags);
|
||||||
|
|
||||||
void initializeClass (void);
|
void initializeClass (void);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue