Index: vm/vmcore/src/class_support/C_Interface.cpp =================================================================== --- vm/vmcore/src/class_support/C_Interface.cpp (revision 483769) +++ vm/vmcore/src/class_support/C_Interface.cpp (working copy) @@ -2231,6 +2231,9 @@ Method *method = (Method *)mh; assert(!ch->is_interface()); // ch cannot be an interface + // ch was a subclass of method_get_class(mh) + assert(class_is_subtype(ch, method_get_class(mh))); + const String *name = method->get_name(); const String *desc = method->get_descriptor(); Method *m = NULL; @@ -2244,6 +2247,7 @@ } } } + return m; } //method_find_overridden_method