mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Code style for privacy indention
This commit is contained in:
parent
00b9a446de
commit
50b7d21ed7
1 changed files with 9 additions and 9 deletions
|
@ -309,17 +309,17 @@ module ActionDispatch
|
|||
Utils.deep_munge(hash)
|
||||
end
|
||||
|
||||
protected
|
||||
|
||||
def parse_query(qs)
|
||||
Utils.deep_munge(super)
|
||||
end
|
||||
protected
|
||||
def parse_query(qs)
|
||||
Utils.deep_munge(super)
|
||||
end
|
||||
|
||||
|
||||
private
|
||||
|
||||
def check_method(name)
|
||||
HTTP_METHOD_LOOKUP[name] || raise(ActionController::UnknownHttpMethod, "#{name}, accepted HTTP methods are #{HTTP_METHODS.to_sentence(:locale => :en)}")
|
||||
name
|
||||
end
|
||||
def check_method(name)
|
||||
HTTP_METHOD_LOOKUP[name] || raise(ActionController::UnknownHttpMethod, "#{name}, accepted HTTP methods are #{HTTP_METHODS.to_sentence(:locale => :en)}")
|
||||
name
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue