diff options
author | Sean Griffin <sean@seantheprogrammer.com> | 2015-10-29 10:01:33 -0600 |
---|---|---|
committer | Sean Griffin <sean@seantheprogrammer.com> | 2015-10-29 10:01:33 -0600 |
commit | 35085c9540b5f5b1423627b2e7a497adbc28e0b2 (patch) | |
tree | e49646db637319a0db37f217220bb70b06457099 /activesupport/lib | |
parent | ddb886ef1338e0e4fa84d6d8ba55161da34d91aa (diff) | |
download | rails-35085c9540b5f5b1423627b2e7a497adbc28e0b2.tar.gz rails-35085c9540b5f5b1423627b2e7a497adbc28e0b2.tar.bz2 rails-35085c9540b5f5b1423627b2e7a497adbc28e0b2.zip |
Deprecate `HWIDA.new_from_hash_copying_default`
This method was already niche, and is now redundant with `.new`
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/hash_with_indifferent_access.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/hash_with_indifferent_access.rb b/activesupport/lib/active_support/hash_with_indifferent_access.rb index 3edeeb0029..4ff35a45a1 100644 --- a/activesupport/lib/active_support/hash_with_indifferent_access.rb +++ b/activesupport/lib/active_support/hash_with_indifferent_access.rb @@ -77,6 +77,11 @@ module ActiveSupport end def self.new_from_hash_copying_default(hash) + ActiveSupport::Deprecation.warn(<<-MSG.squish) + `ActiveSupport::HashWithIndifferentAccess.new_from_hash_copying_default` + has been deprecated, and will be removed in Rails 5.1. The behavior of + this method is now identical to the behavior of `.new`. + MSG new(hash) end |