summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-10 07:44:00 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-02-10 07:44:00 +0000
commit157fa66eaa995621ddb732a94adb6d9b665623e0 (patch)
treec107fd0c04868cb855b12b12c6cf4af3862a8fe8 /eval.c
parenta278e7a612683153a875432ad44b3ea9ed67ac28 (diff)
* eval.c (umethod_bind): perge unused check. [ruby-dev:22850]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@5664 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/eval.c b/eval.c
index 381f0cf78d..8c5e78bd2b 100644
--- a/eval.c
+++ b/eval.c
@@ -8782,12 +8782,6 @@ umethod_bind(method, recv)
if (FL_TEST(data->rklass, FL_SINGLETON)) {
rb_raise(rb_eTypeError, "singleton method called for a different object");
}
-#if 0
- if (FL_TEST(CLASS_OF(recv), FL_SINGLETON) &&
- st_lookup(RCLASS(CLASS_OF(recv))->m_tbl, data->oid, 0)) {
- rb_raise(rb_eTypeError, "method `%s' overridden", rb_id2name(data->oid));
- }
-#endif
if(!rb_obj_is_kind_of(recv, data->rklass)) {
rb_raise(rb_eTypeError, "bind argument must be an instance of %s",
rb_class2name(data->rklass));