Use __send__() instead of send().

This commit is contained in:
Akinori MUSHA 2013-03-19 21:51:14 +09:00
parent b78271db6d
commit 28eabedcd3

View file

@ -505,7 +505,7 @@ class HTTP::Cookie
map.each { |key, value| map.each { |key, value|
case key case key
when *PERSISTENT_PROPERTIES when *PERSISTENT_PROPERTIES
send(:"#{key}=", value) __send__(:"#{key}=", value)
end end
} }
end end