summaryrefslogtreecommitdiff
path: root/vm.c
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-17 09:14:24 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-17 09:14:24 +0000
commit9aceaa1129d18f03891521b6220addf7c9b5388a (patch)
tree69243a718274f89580681c5ceb69b60b5d837c04 /vm.c
parent9afd5465e216f4795bf952a072aae5b315a66d8d (diff)
* vm.c (Init_VM): removed the definition of Thread#initialize,
which is overwritten in Init_Thread and is never used. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16448 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'vm.c')
-rw-r--r--vm.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/vm.c b/vm.c
index ca73e4cb59..f29a1e221e 100644
--- a/vm.c
+++ b/vm.c
@@ -1771,7 +1771,6 @@ Init_VM(void)
/* ::Thread */
rb_cThread = rb_define_class("Thread", rb_cObject);
rb_undef_alloc_func(rb_cThread);
- rb_define_method(rb_cThread, "initialize", ruby_thread_init, 0);
/* ::VM::USAGE_ANALYSIS_* */
rb_define_const(rb_cVM, "USAGE_ANALYSIS_INSN", rb_hash_new());