aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorNeeraj Singh <neerajdotname@gmail.com>2010-07-27 21:22:47 +0800
committerJosé Valim <jose.valim@gmail.com>2010-07-28 21:02:44 +0800
commit194ec3d165f6ef4dd53391d6c959c57ed60507b4 (patch)
treecd941325373a4fc22723e2cb7b6c69697fad1521 /activesupport/lib
parenteff074951ea245fac47edcc5c3414d4787db5c76 (diff)
downloadrails-194ec3d165f6ef4dd53391d6c959c57ed60507b4.tar.gz
rails-194ec3d165f6ef4dd53391d6c959c57ed60507b4.tar.bz2
rails-194ec3d165f6ef4dd53391d6c959c57ed60507b4.zip
removing unused variable
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/cache.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb
index bef9c98ecf..0efb1a9458 100644
--- a/activesupport/lib/active_support/cache.rb
+++ b/activesupport/lib/active_support/cache.rb
@@ -19,8 +19,6 @@ module ActiveSupport
autoload :SynchronizedMemoryStore, 'active_support/cache/synchronized_memory_store'
autoload :CompressedMemCacheStore, 'active_support/cache/compressed_mem_cache_store'
- EMPTY_OPTIONS = {}.freeze
-
# These options mean something to all cache implementations. Individual cache
# implementations may support additional options.
UNIVERSAL_OPTIONS = [:namespace, :compress, :compress_threshold, :expires_in, :race_condition_ttl]