From ffe4e0376f66ff4db3a098f9c41fd8c8dd3c5ac7 Mon Sep 17 00:00:00 2001 From: Bryce McKinlay Date: Sat, 24 Jul 2004 01:17:29 +0000 Subject: prims.cc (_Jv_InitPrimClass): Don't create an array class. 2004-07-23 Bryce McKinlay * prims.cc (_Jv_InitPrimClass): Don't create an array class. (_Jv_CreateJavaVM): Don't pass array vtable parameter to _Jv_InitPrimClass. (DECLARE_PRIM_TYPE): Don't declare array vtables. * include/jvm.h (struct _Jv_ArrayVTable): Removed. * java/lang/Class.h (_Jv_InitPrimClass): Update friend declaration. From-SVN: r85109 --- libjava/include/jvm.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'libjava/include') diff --git a/libjava/include/jvm.h b/libjava/include/jvm.h index 7b5e9842c27..b8592772923 100644 --- a/libjava/include/jvm.h +++ b/libjava/include/jvm.h @@ -79,12 +79,6 @@ struct _Jv_VTable // to keep this up to date by hand. #define NUM_OBJECT_METHODS 5 -// This structure is the type of an array's vtable. -struct _Jv_ArrayVTable : public _Jv_VTable -{ - vtable_elt extra_method[NUM_OBJECT_METHODS - 1]; -}; - union _Jv_word { jobject o; -- cgit v1.2.1