aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/routing/mapper.rb
diff options
context:
space:
mode:
authorJerry Tao <taojie@yeezon.com>2017-02-22 16:45:15 +0800
committerAndrew White <andrew.white@unboxed.co>2017-02-26 12:22:06 +0000
commit6ddd65c9f366c5bca70cfce770d144e2fca1e679 (patch)
tree652027594512eb163cddfef4b2d36c6cd59fec63 /actionpack/lib/action_dispatch/routing/mapper.rb
parent228c6c07f1b5e786c72d9e30b2755d764f7a425d (diff)
downloadrails-6ddd65c9f366c5bca70cfce770d144e2fca1e679.tar.gz
rails-6ddd65c9f366c5bca70cfce770d144e2fca1e679.tar.bz2
rails-6ddd65c9f366c5bca70cfce770d144e2fca1e679.zip
Remove unused params.
Diffstat (limited to 'actionpack/lib/action_dispatch/routing/mapper.rb')
-rw-r--r--actionpack/lib/action_dispatch/routing/mapper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb
index 10d733e477..6e06c70dc2 100644
--- a/actionpack/lib/action_dispatch/routing/mapper.rb
+++ b/actionpack/lib/action_dispatch/routing/mapper.rb
@@ -1904,7 +1904,7 @@ module ActionDispatch
ast = Journey::Parser.parse path
mapping = Mapping.build(@scope, @set, ast, controller, default_action, to, via, formatted, options_constraints, anchor, options)
- @set.add_route(mapping, ast, as, anchor)
+ @set.add_route(mapping, as)
end
def match_root_route(options)