From 95a5d177cc796bb801320c60e91e4374e3c7570d Mon Sep 17 00:00:00 2001 From: Aaron Patterson Date: Thu, 13 Aug 2015 15:44:15 -0700 Subject: `build_path` doesn't need the path variable anymore It just constructs a Path::Pattern object with the AST that it already has --- actionpack/lib/action_dispatch/routing/route_set.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'actionpack/lib') diff --git a/actionpack/lib/action_dispatch/routing/route_set.rb b/actionpack/lib/action_dispatch/routing/route_set.rb index e549316f24..279cbd232b 100644 --- a/actionpack/lib/action_dispatch/routing/route_set.rb +++ b/actionpack/lib/action_dispatch/routing/route_set.rb @@ -528,7 +528,7 @@ module ActionDispatch path = conditions.delete :path_info ast = conditions.delete :parsed_path_info required_defaults = conditions.delete :required_defaults - path = build_path(path, ast, requirements, anchor) + path = build_path(ast, requirements, anchor) conditions = build_conditions(conditions) route = @set.add_route(app, path, conditions, required_defaults, defaults, name) @@ -536,7 +536,7 @@ module ActionDispatch route end - def build_path(path, ast, requirements, anchor) + def build_path(ast, requirements, anchor) pattern = Journey::Path::Pattern.new(ast, requirements, SEPARATORS, anchor) builder = Journey::GTG::Builder.new ast -- cgit v1.2.3