Get rid of unused method

It's usage has been removed in 325c9d5e52.
This commit is contained in:
Carlos Antonio da Silva 2014-05-13 09:49:00 -03:00
parent e2ae787b36
commit c6c1642383
1 changed files with 0 additions and 11 deletions

View File

@ -729,17 +729,6 @@ module ActionDispatch
raise ActionController::RoutingError, "No route matches #{path.inspect}"
end
private
def extract_authentication(options)
if options[:user] && options[:password]
[options.delete(:user), options.delete(:password)]
else
nil
end
end
end
end
end