diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2011-03-02 15:17:13 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2011-03-02 15:17:13 -0800 |
commit | dc89e29f4937a68e91cd7572f45f06c523430c23 (patch) | |
tree | 2e5c22c6c309e174d498b9dff61b0da31f28d82d /activesupport/lib/active_support/cache/strategy | |
parent | b247c8d71a54d684a1c307986a03d1759bbc20e0 (diff) | |
download | rails-dc89e29f4937a68e91cd7572f45f06c523430c23.tar.gz rails-dc89e29f4937a68e91cd7572f45f06c523430c23.tar.bz2 rails-dc89e29f4937a68e91cd7572f45f06c523430c23.zip |
remove to_s implementation so that inspect is helpful
Diffstat (limited to 'activesupport/lib/active_support/cache/strategy')
-rw-r--r-- | activesupport/lib/active_support/cache/strategy/local_cache.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/cache/strategy/local_cache.rb b/activesupport/lib/active_support/cache/strategy/local_cache.rb index 99b26b19fe..0649a058aa 100644 --- a/activesupport/lib/active_support/cache/strategy/local_cache.rb +++ b/activesupport/lib/active_support/cache/strategy/local_cache.rb @@ -55,7 +55,6 @@ module ActiveSupport # construct them. class Middleware # :nodoc: attr_reader :name, :thread_local_key - alias :to_s :name def initialize(name, thread_local_key) @name = name |