diff options
author | José Valim <jose.valim@gmail.com> | 2011-10-29 09:40:28 -0700 |
---|---|---|
committer | José Valim <jose.valim@gmail.com> | 2011-10-29 09:40:28 -0700 |
commit | e848bcacdd324903875a18b998403fb141a05dd3 (patch) | |
tree | a025ca9c827c9b81d966f5df26d113a8af45afea | |
parent | e886f97669d5aa072af7bb625f5e16635e187124 (diff) | |
parent | 596d625c9b7f3a95cb8460d495b328d322d5bee6 (diff) | |
download | rails-e848bcacdd324903875a18b998403fb141a05dd3.tar.gz rails-e848bcacdd324903875a18b998403fb141a05dd3.tar.bz2 rails-e848bcacdd324903875a18b998403fb141a05dd3.zip |
Merge pull request #3462 from kennyj/remove_deprecated_code
removed a reference to SynchronizedMemoryStore and CompressedMemCacheStore
-rw-r--r-- | activesupport/lib/active_support/cache.rb | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb index 95d936b32f..8cb74b2a86 100644 --- a/activesupport/lib/active_support/cache.rb +++ b/activesupport/lib/active_support/cache.rb @@ -16,8 +16,6 @@ module ActiveSupport autoload :FileStore, 'active_support/cache/file_store' autoload :MemoryStore, 'active_support/cache/memory_store' autoload :MemCacheStore, 'active_support/cache/mem_cache_store' - autoload :SynchronizedMemoryStore, 'active_support/cache/synchronized_memory_store' - autoload :CompressedMemCacheStore, 'active_support/cache/compressed_mem_cache_store' # These options mean something to all cache implementations. Individual cache # implementations may support additional options. |