mirror of
https://github.com/samsonjs/simple_oauth.git
synced 2026-03-25 08:45:54 +00:00
Use _ to indicate that block argument is unused
This commit is contained in:
parent
65a3bdcde8
commit
e40b445be1
1 changed files with 1 additions and 1 deletions
|
|
@ -77,7 +77,7 @@ module SimpleOAuth
|
|||
private
|
||||
|
||||
def normalized_attributes
|
||||
signed_attributes.sort_by { |k, v| k.to_s }.collect { |k, v| %(#{k}="#{self.class.escape(v)}") }.join(', ')
|
||||
signed_attributes.sort_by { |k, _| k.to_s }.collect { |k, v| %(#{k}="#{self.class.escape(v)}") }.join(', ')
|
||||
end
|
||||
|
||||
def attributes
|
||||
|
|
|
|||
Loading…
Reference in a new issue