Comment out some method

+ freeze
+ taint
+ untaint
This commit is contained in:
yui-knk
2014-07-24 08:27:48 +09:00
parent fad2bd9617
commit 5e10c11662
+12 -12
View File
@@ -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