Forgot this file on last check-in.

From-SVN: r39910
This commit is contained in:
Bryce McKinlay 2001-02-19 22:52:15 +00:00
parent a648f4e4c8
commit 3cb4f6fa99

View file

@ -424,11 +424,6 @@ build_java_array_type (element_type, length)
FIELD_FINAL (fld) = 1;
TREE_READONLY (fld) = 1;
/* Add clone method. This is different from Object.clone because it
is public. */
add_method (t, ACC_PUBLIC | ACC_FINAL, get_identifier ("clone"),
get_identifier ("()Ljava/lang/Object;"));
atype = build_prim_array_type (element_type, length);
arfld = build_decl (FIELD_DECL, get_identifier ("data"), atype);
DECL_CONTEXT (arfld) = t;