From: Zoltan Varga Date: Mon, 4 Jan 2010 19:53:58 +0000 (-0000) Subject: 2010-01-04 Zoltan Varga X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=744d7a2598edbeee38cf3730645fc1c3c8c0c900;p=mono.git 2010-01-04 Zoltan Varga * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field. svn path=/trunk/mono/; revision=149047 --- diff --git a/mono/metadata/ChangeLog b/mono/metadata/ChangeLog index 9e9bf839551..524048052d0 100644 --- a/mono/metadata/ChangeLog +++ b/mono/metadata/ChangeLog @@ -1,3 +1,7 @@ +2010-01-04 Zoltan Varga + + * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field. + 2010-01-04 Sebastien Pouliot * verify.c (verify_valuetype_layout_with_target): Fix case diff --git a/mono/metadata/image.c b/mono/metadata/image.c index 82649e875d0..114edd4c56d 100644 --- a/mono/metadata/image.c +++ b/mono/metadata/image.c @@ -1573,9 +1573,6 @@ mono_image_close_except_pools (MonoImage *image) g_hash_table_destroy (image->helper_signatures); g_hash_table_destroy (image->method_signatures); - if (image->generic_class_cache) - g_hash_table_destroy (image->generic_class_cache); - if (image->rgctx_template_hash) g_hash_table_destroy (image->rgctx_template_hash); diff --git a/mono/metadata/metadata-internals.h b/mono/metadata/metadata-internals.h index 07edb03210d..95d809452a7 100644 --- a/mono/metadata/metadata-internals.h +++ b/mono/metadata/metadata-internals.h @@ -232,11 +232,6 @@ struct _MonoImage { GHashTable *proxy_isinst_cache; GHashTable *rgctx_template_hash; /* LOCKING: templates lock */ - /* - * indexed by token and MonoGenericContext pointer - */ - GHashTable *generic_class_cache; - /* Contains rarely used fields of runtime structures belonging to this image */ MonoPropertyHash *property_hash;