Mon Jul 16 19:45:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
authorPaolo Molaro <lupus@oddwiz.org>
Mon, 16 Jul 2007 17:31:29 +0000 (17:31 -0000)
committerPaolo Molaro <lupus@oddwiz.org>
Mon, 16 Jul 2007 17:31:29 +0000 (17:31 -0000)
* get.c: mono_get_inflated_method () is obsolete, removed.

svn path=/trunk/mono/; revision=82051

mono/dis/ChangeLog
mono/dis/get.c

index f5fd29fe7f41c932dbf4153e6e8bf2eb025e381f..c5e15383e2c313c83ac6de87053e00b3c7b6e4bf 100644 (file)
@@ -1,3 +1,8 @@
+
+Mon Jul 16 19:45:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
+
+       * get.c: mono_get_inflated_method () is obsolete, removed.
+
 2007-06-15  Raja R Harinath  <rharinath@novell.com>
 
        * get.c (dis_stringify_object_with_class): Update to changes in
index 619008d110bd9eade77cf5d65b21d0140c3cfbe2..aa76ffc548b1033ccc80f29b41f6707eba65c19a 100644 (file)
@@ -1860,7 +1860,6 @@ get_method_core (MonoImage *m, guint32 token, gboolean fullsig, MonoGenericConta
 
        mh = mono_get_method_full (m, token, NULL, (MonoGenericContext *) container);
        if (mh) {
-               mh = mono_get_inflated_method (mh);
                if (mono_method_signature (mh)->is_inflated)
                        container = ((MonoMethodInflated *) mh)->declaring->generic_container;
                esname = get_escaped_name (mh->name);
@@ -3044,7 +3043,6 @@ get_method_override (MonoImage *m, guint32 token, MonoGenericContainer *containe
                if (token == impl) {
                        MonoMethod *mh = NULL;
                        mh = mono_get_method_full (m, decl, NULL, (MonoGenericContext *) container);
-                       mh = mono_get_inflated_method (mh);
 
                        if (mh && (mh->klass && (mh->klass->generic_class || mh->klass->generic_container))) {
                                char *meth_str;