diff options
| -rw-r--r-- | actionpack/lib/action_dispatch/routing/mapper.rb | 13 | 
1 files changed, 2 insertions, 11 deletions
| diff --git a/actionpack/lib/action_dispatch/routing/mapper.rb b/actionpack/lib/action_dispatch/routing/mapper.rb index 421e2023c2..d67044b4ac 100644 --- a/actionpack/lib/action_dispatch/routing/mapper.rb +++ b/actionpack/lib/action_dispatch/routing/mapper.rb @@ -160,17 +160,8 @@ module ActionDispatch          end          def make_route(name, precedence) -          route = Journey::Route.new(name, -                            application, -                            path, -                            conditions, -                            required_defaults, -                            defaults, -                            request_method, -                            precedence, -                            @internal) - -          route +          Journey::Route.new(name, application, path, conditions, required_defaults, +                             defaults, request_method, precedence, @internal)          end          def application | 
