diff options
author | Andrew White <pixeltrix@users.noreply.github.com> | 2016-11-14 19:59:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-14 19:59:43 +0000 |
commit | e491b2c06329afb3c989261a2865d2a93c8b84b8 (patch) | |
tree | dd44570d81335f60d655475c91ed3922c60a57d0 /activesupport/lib/active_support/cache/strategy | |
parent | 3a82ad746ab479dd1addd9c723197fb9f927194b (diff) | |
parent | 0d7bd2031b4054fbdeab0a00dd58b1b08fb7fea6 (diff) | |
download | rails-e491b2c06329afb3c989261a2865d2a93c8b84b8.tar.gz rails-e491b2c06329afb3c989261a2865d2a93c8b84b8.tar.bz2 rails-e491b2c06329afb3c989261a2865d2a93c8b84b8.zip |
Merge pull request #27035 from rails/remove-active-support-deprecations
Remove Active Support deprecations
Diffstat (limited to 'activesupport/lib/active_support/cache/strategy')
-rw-r--r-- | activesupport/lib/active_support/cache/strategy/local_cache.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/activesupport/lib/active_support/cache/strategy/local_cache.rb b/activesupport/lib/active_support/cache/strategy/local_cache.rb index f41cc23eb0..7652cae201 100644 --- a/activesupport/lib/active_support/cache/strategy/local_cache.rb +++ b/activesupport/lib/active_support/cache/strategy/local_cache.rb @@ -124,14 +124,6 @@ module ActiveSupport super end - def set_cache_value(value, name, amount, options) # :nodoc: - ActiveSupport::Deprecation.warn(<<-MESSAGE.strip_heredoc) - `set_cache_value` is deprecated and will be removed from Rails 5.1. - Please use `write_cache_value` instead. - MESSAGE - write_cache_value name, value, options - end - def write_cache_value(name, value, options) # :nodoc: name = normalize_key(name, options) cache = local_cache |