提交 dbf67b3a 编写于 作者: A Akira Matsuda

Unneeded &block parameters

上级 83215b86
...@@ -419,7 +419,7 @@ def []=(key, value) ...@@ -419,7 +419,7 @@ def []=(key, value)
# params.fetch(:none) # => ActionController::ParameterMissing: param is missing or the value is empty: none # params.fetch(:none) # => ActionController::ParameterMissing: param is missing or the value is empty: none
# params.fetch(:none, 'Francesco') # => "Francesco" # params.fetch(:none, 'Francesco') # => "Francesco"
# params.fetch(:none) { 'Francesco' } # => "Francesco" # params.fetch(:none) { 'Francesco' } # => "Francesco"
def fetch(key, *args, &block) def fetch(key, *args)
convert_value_to_parameters( convert_value_to_parameters(
@parameters.fetch(key) { @parameters.fetch(key) {
if block_given? if block_given?
...@@ -514,7 +514,7 @@ def transform_keys!(&block) ...@@ -514,7 +514,7 @@ def transform_keys!(&block)
# to key. If the key is not found, returns the default value. If the # to key. If the key is not found, returns the default value. If the
# optional code block is given and the key is not found, pass in the key # optional code block is given and the key is not found, pass in the key
# and return the result of block. # and return the result of block.
def delete(key, &block) def delete(key)
convert_value_to_parameters(@parameters.delete(key)) convert_value_to_parameters(@parameters.delete(key))
end end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册