* src/vmcore/class.c (class_free): Fixed another merge problem (thx to panzi).
authorMichael Starzinger <michi@complang.tuwien.ac.at>
Fri, 31 Aug 2007 11:23:22 +0000 (13:23 +0200)
committerMichael Starzinger <michi@complang.tuwien.ac.at>
Fri, 31 Aug 2007 11:23:22 +0000 (13:23 +0200)
--HG--
branch : exact-gc

src/vmcore/class.c

index 5c810efa571a4f13a4b34da39c5573f70ccb7d2a..31f95208bdcaa991cbfd27bbba73323a6fecf7b1 100644 (file)
@@ -847,16 +847,6 @@ void class_free(classinfo *c)
                mem_free(c->header.vftbl, sizeof(vftbl) + sizeof(methodptr)*(c->vftbl->vftbllength-1)); */
        
 /*     GCFREE(c); */
-
-#if defined(ENABLE_ANNOTATIONS)
-       annotation_bytearray_free(c->annotations);
-
-       annotation_bytearrays_free(c->method_annotations);
-       annotation_bytearrays_free(c->method_parameterannotations);
-       annotation_bytearrays_free(c->method_annotationdefaults);
-
-       annotation_bytearrays_free(c->field_annotations);
-#endif
 }