diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-05-23 18:36:13 -0300 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2016-10-10 00:02:52 -0300 |
commit | c396a8c991ba1143b33e844118765f7a1ca22666 (patch) | |
tree | e5491aa5adaa8b1d938f452940858bf74c189174 /actionpack/lib | |
parent | 79a5ea9eadb4d43b62afacedc0706cbe88c54496 (diff) | |
download | rails-c396a8c991ba1143b33e844118765f7a1ca22666.tar.gz rails-c396a8c991ba1143b33e844118765f7a1ca22666.tar.bz2 rails-c396a8c991ba1143b33e844118765f7a1ca22666.zip |
Remove deprecated comparing support with `ActionController::Parameters`
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/metal/strong_parameters.rb | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/actionpack/lib/action_controller/metal/strong_parameters.rb b/actionpack/lib/action_controller/metal/strong_parameters.rb index 387c2aa0b9..9883f109f7 100644 --- a/actionpack/lib/action_controller/metal/strong_parameters.rb +++ b/actionpack/lib/action_controller/metal/strong_parameters.rb @@ -151,15 +151,6 @@ module ActionController def ==(other) if other.respond_to?(:permitted?) self.permitted? == other.permitted? && self.parameters == other.parameters - elsif other.is_a?(Hash) - ActiveSupport::Deprecation.warn <<-WARNING.squish - Comparing equality between `ActionController::Parameters` and a - `Hash` is deprecated and will be removed in Rails 5.1. Please only do - comparisons between instances of `ActionController::Parameters`. If - you need to compare to a hash, first convert it using - `ActionController::Parameters#new`. - WARNING - @parameters == other.with_indifferent_access else @parameters == other end |