diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2007-09-14 01:00:32 +0000 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2007-09-14 01:00:32 +0000 |
commit | 15f7f1a38041c0b3355f2a323f785465b44029f9 (patch) | |
tree | 00d7a22499f863fc84af47dd316859cc7862da90 /actionpack | |
parent | 041b9b8a1c1661f90e8e586fddce981bfdb17f11 (diff) | |
download | rails-15f7f1a38041c0b3355f2a323f785465b44029f9.tar.gz rails-15f7f1a38041c0b3355f2a323f785465b44029f9.tar.bz2 rails-15f7f1a38041c0b3355f2a323f785465b44029f9.zip |
Missed Reloadable bits and pieces
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7475 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/caching.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb index 64780cefc2..7d372cf250 100644 --- a/actionpack/lib/action_controller/caching.rb +++ b/actionpack/lib/action_controller/caching.rb @@ -612,10 +612,6 @@ module ActionController #:nodoc: class Sweeper < ActiveRecord::Observer #:nodoc: attr_accessor :controller - # ActiveRecord::Observer will mark this class as reloadable even though it should not be. - # However, subclasses of ActionController::Caching::Sweeper should be Reloadable - include Reloadable::Deprecated - def before(controller) self.controller = controller callback(:before) |