aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-09-14 01:00:32 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-09-14 01:00:32 +0000
commit15f7f1a38041c0b3355f2a323f785465b44029f9 (patch)
tree00d7a22499f863fc84af47dd316859cc7862da90 /actionpack/lib/action_controller
parent041b9b8a1c1661f90e8e586fddce981bfdb17f11 (diff)
downloadrails-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/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/caching.rb4
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)