mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Comment out some method
+ freeze + taint + untaint
This commit is contained in:
+12
-12
@@ -41,20 +41,20 @@ class Set
|
||||
# @hash = orig.instance_variable_get(:@hash).clone
|
||||
# end
|
||||
|
||||
def freeze
|
||||
@hash.freeze
|
||||
super
|
||||
end
|
||||
# def freeze
|
||||
# @hash.freeze
|
||||
# super
|
||||
# end
|
||||
|
||||
def taint
|
||||
@hash.taint
|
||||
super
|
||||
end
|
||||
# def taint
|
||||
# @hash.taint
|
||||
# super
|
||||
# end
|
||||
|
||||
def untaint
|
||||
@hash.untaint
|
||||
super
|
||||
end
|
||||
# def untaint
|
||||
# @hash.untaint
|
||||
# super
|
||||
# end
|
||||
|
||||
def size
|
||||
@hash.size
|
||||
|
||||
Reference in New Issue
Block a user