diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2007-09-09 18:03:55 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2007-09-09 18:03:55 +0000 |
commit | b7c565dc626dda5cdd8ef041edc27fec08ac541b (patch) | |
tree | 8f233f257b3c0a337859e39a5f9c4b0477a23508 /actionpack | |
parent | 89b7630627b2e4c16b499273bc95b9fb40c7ed0a (diff) | |
download | rails-b7c565dc626dda5cdd8ef041edc27fec08ac541b.tar.gz rails-b7c565dc626dda5cdd8ef041edc27fec08ac541b.tar.bz2 rails-b7c565dc626dda5cdd8ef041edc27fec08ac541b.zip |
Removed deprecated ActionController::Base#expire_matched_fragments (just call expire_fragment with a regular expression)
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7427 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/caching.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb index e6e42b9126..64780cefc2 100644 --- a/actionpack/lib/action_controller/caching.rb +++ b/actionpack/lib/action_controller/caching.rb @@ -421,12 +421,6 @@ module ActionController #:nodoc: end end - # Deprecated -- just call expire_fragment with a regular expression - def expire_matched_fragments(matcher = /.*/, options = nil) #:nodoc: - expire_fragment(matcher, options) - end - deprecate :expire_matched_fragments => :expire_fragment - class UnthreadedMemoryStore #:nodoc: def initialize #:nodoc: |