diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-08-15 00:35:41 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-08-15 00:35:41 +0900 |
| commit | babc8d00865b86c77032cfe4d69ddfea3ac9f4ef (patch) | |
| tree | 80485f62ef1aeb31effe161b175082e27cf03d32 /mrblib/class.rb | |
| parent | 6e978d55749f32b49d57cd08723c0d734c898fb9 (diff) | |
| download | mruby-babc8d00865b86c77032cfe4d69ddfea3ac9f4ef.tar.gz mruby-babc8d00865b86c77032cfe4d69ddfea3ac9f4ef.zip | |
implement Class.new in C again
Diffstat (limited to 'mrblib/class.rb')
| -rw-r--r-- | mrblib/class.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/mrblib/class.rb b/mrblib/class.rb index 7f37b7bc3..664eaf3ce 100644 --- a/mrblib/class.rb +++ b/mrblib/class.rb @@ -4,11 +4,6 @@ class Class obj.initialize(*args,&b) obj end - def self.new(*args) - obj = super - obj.inherited - obj - end end class Module |
