diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2014-05-13 14:32:45 -0700 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2014-05-13 14:32:45 -0700 |
commit | 6457ed41267975abe96b3d50364ba6b3a333b16f (patch) | |
tree | ea86bc29002602169034bcbaef16dae2278f6915 /actionpack | |
parent | 567aa5440e3030161cb9dd0864909f1ccce60f72 (diff) | |
download | rails-6457ed41267975abe96b3d50364ba6b3a333b16f.tar.gz rails-6457ed41267975abe96b3d50364ba6b3a333b16f.tar.bz2 rails-6457ed41267975abe96b3d50364ba6b3a333b16f.zip |
this method should always have a parameter passed to it, so remove the default
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/routing/route_set.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/routing/route_set.rb b/actionpack/lib/action_dispatch/routing/route_set.rb index f0c0810a3c..8f52071577 100644 --- a/actionpack/lib/action_dispatch/routing/route_set.rb +++ b/actionpack/lib/action_dispatch/routing/route_set.rb @@ -641,7 +641,7 @@ module ActionDispatch !mounted? && default_url_options.empty? end - def _generate_prefix(options = {}) + def _generate_prefix(options) nil end |