From 0e6b588b3df595cecd18eb523f5f75c413df8277 Mon Sep 17 00:00:00 2001 From: Sergey Nartimov Date: Fri, 2 Mar 2012 19:01:53 +0300 Subject: don't pass unnecessary argument --- actionpack/lib/action_dispatch/routing/route_set.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actionpack/lib/action_dispatch/routing/route_set.rb b/actionpack/lib/action_dispatch/routing/route_set.rb index c4d87ea3d9..30e9e5634b 100644 --- a/actionpack/lib/action_dispatch/routing/route_set.rb +++ b/actionpack/lib/action_dispatch/routing/route_set.rb @@ -191,7 +191,7 @@ module ActionDispatch selector = url_helper_name(name, kind) hash_access_method = hash_access_name(name, kind) - if optimize_helper?(kind, route) + if optimize_helper?(route) @module.module_eval <<-END_EVAL, __FILE__, __LINE__ + 1 remove_possible_method :#{selector} def #{selector}(*args) @@ -217,7 +217,7 @@ module ActionDispatch end # Clause check about when we need to generate an optimized helper. - def optimize_helper?(kind, route) #:nodoc: + def optimize_helper?(route) #:nodoc: route.ast.grep(Journey::Nodes::Star).empty? && route.requirements.except(:controller, :action).empty? end -- cgit v1.2.3