Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 3509

Show
Ignore:
Timestamp:
02/01/06 03:58:37 (3 years ago)
Author:
david
Message:

If included_modules doesnt take a parameter, we shouldnt either

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/lib/action_controller/caching.rb

    r3508 r3509  
    523523 
    524524        # ActiveRecord::Observer will mark this class as reloadable even though it should be 
    525         def self.included_modules(include_super = true) 
     525        def self.included_modules 
    526526          super() - [ Reloadable ] 
    527527        end 
  • trunk/actionpack/lib/action_controller/session/active_record_store.rb

    r3508 r3509  
    6767        class << self 
    6868          # Don't try to reload ARStore::Session in dev mode. 
    69           def included_modules(include_super = true) 
     69          def included_modules 
    7070            super() - [ Reloadable ] 
    7171          end