aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2017-02-20 22:15:31 +0100
committerKasper Timm Hansen <kaspth@gmail.com>2017-02-20 22:15:31 +0100
commit507c9970ab2d9e8296d605bc94843e2aa62aa5fd (patch)
treefbead4ba5f60bd6f1c319d0015990e5aae2a1e99 /activesupport/lib
parente9abbb700acd8165a8994d8b2a700e507fb3b7ff (diff)
downloadrails-507c9970ab2d9e8296d605bc94843e2aa62aa5fd.tar.gz
rails-507c9970ab2d9e8296d605bc94843e2aa62aa5fd.tar.bz2
rails-507c9970ab2d9e8296d605bc94843e2aa62aa5fd.zip
Revert "Merge pull request #27925 from robin850/hwia-removal"
Pointed out by @matthewd that the HWIA subclass changes the AS scoped class and top-level HWIA hierarchies out from under existing classes. This reverts commit 71da39097b67114329be6d8db7fe6911124531af, reversing changes made to 41c33bd4b2ec3f4a482e6030b6fda15091d81e4a.
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/hash_with_indifferent_access.rb18
1 files changed, 1 insertions, 17 deletions
diff --git a/activesupport/lib/active_support/hash_with_indifferent_access.rb b/activesupport/lib/active_support/hash_with_indifferent_access.rb
index 8638667082..79e7feaf47 100644
--- a/activesupport/lib/active_support/hash_with_indifferent_access.rb
+++ b/activesupport/lib/active_support/hash_with_indifferent_access.rb
@@ -316,20 +316,4 @@ module ActiveSupport
end
end
-class HashWithIndifferentAccess < ActiveSupport::HashWithIndifferentAccess
- def initialize(*)
- ActiveSupport::Deprecation.warn "HashWithIndifferentAccess is deprecated!" \
- "Use ActiveSupport::HashWithIndifferentAccess instead."
- super
- end
-
- def self.inherited(*)
- ActiveSupport::Deprecation.warn "HashWithIndifferentAccess is deprecated!" \
- "Use ActiveSupport::HashWithIndifferentAccess instead."
- super
- end
-
- def encode_with(coder)
- coder.represent_object(nil, ActiveSupport::HashWithIndifferentAccess.new(self))
- end
-end
+HashWithIndifferentAccess = ActiveSupport::HashWithIndifferentAccess