Skip to content

Commit

Permalink
Code style for privacy indention
Browse files Browse the repository at this point in the history
  • Loading branch information
dhh committed Nov 3, 2013
1 parent 00b9a44 commit 50b7d21
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions actionpack/lib/action_dispatch/http/request.rb
Expand Up @@ -309,17 +309,17 @@ def deep_munge(hash)
Utils.deep_munge(hash) Utils.deep_munge(hash)
end end



protected protected
def parse_query(qs)
Utils.deep_munge(super)
end


def parse_query(qs)
Utils.deep_munge(super)
end


private private

def check_method(name)
def check_method(name) HTTP_METHOD_LOOKUP[name] || raise(ActionController::UnknownHttpMethod, "#{name}, accepted HTTP methods are #{HTTP_METHODS.to_sentence(:locale => :en)}")
HTTP_METHOD_LOOKUP[name] || raise(ActionController::UnknownHttpMethod, "#{name}, accepted HTTP methods are #{HTTP_METHODS.to_sentence(:locale => :en)}") name
name end
end
end end
end end

0 comments on commit 50b7d21

Please sign in to comment.