mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* hash.c: remove unnecessary update.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4958 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ba2147ba40
commit
9e1709139d
1 changed files with 0 additions and 9 deletions
9
hash.c
9
hash.c
|
@ -41,14 +41,6 @@ rb_hash_freeze(hash)
|
|||
return rb_obj_freeze(hash);
|
||||
}
|
||||
|
||||
static VALUE
|
||||
rb_hash_frozen_p(hash)
|
||||
VALUE hash;
|
||||
{
|
||||
if (OBJ_FROZEN(hash)) return Qtrue;
|
||||
return Qfalse;
|
||||
}
|
||||
|
||||
VALUE rb_cHash;
|
||||
|
||||
static VALUE envtbl;
|
||||
|
@ -1797,7 +1789,6 @@ Init_Hash()
|
|||
rb_define_method(rb_cHash,"to_a", rb_hash_to_a, 0);
|
||||
rb_define_method(rb_cHash,"to_s", rb_hash_to_s, 0);
|
||||
rb_define_method(rb_cHash,"inspect", rb_hash_inspect, 0);
|
||||
rb_define_method(rb_cHash,"frozen?", rb_hash_frozen_p, 0);
|
||||
|
||||
rb_define_method(rb_cHash,"==", rb_hash_equal, 1);
|
||||
rb_define_method(rb_cHash,"[]", rb_hash_aref, 1);
|
||||
|
|
Loading…
Reference in a new issue