diff options
author | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-06-15 17:32:10 -0700 |
---|---|---|
committer | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-06-15 17:32:10 -0700 |
commit | 3c15cba17519e7a4acc3958662f8f3693837c179 (patch) | |
tree | 9cf370a4ac9da9eee54130633b297209fd9d02d1 /actionpack/lib/action_controller/base | |
parent | 19c3495a671c364e0dc76c276efbcd9dc6914c74 (diff) | |
download | rails-3c15cba17519e7a4acc3958662f8f3693837c179.tar.gz rails-3c15cba17519e7a4acc3958662f8f3693837c179.tar.bz2 rails-3c15cba17519e7a4acc3958662f8f3693837c179.zip |
Whoops, I guess we broke layouts ;)
Diffstat (limited to 'actionpack/lib/action_controller/base')
-rw-r--r-- | actionpack/lib/action_controller/base/base.rb | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/actionpack/lib/action_controller/base/base.rb b/actionpack/lib/action_controller/base/base.rb index e8fc153578..e541d24e31 100644 --- a/actionpack/lib/action_controller/base/base.rb +++ b/actionpack/lib/action_controller/base/base.rb @@ -71,12 +71,6 @@ module ActionController @subclasses ||= [] end - def self.app_loaded! - @subclasses.each do |subclass| - subclass.constantize._write_layout_method - end - end - def _normalize_options(action = nil, options = {}, &blk) if action.is_a?(Hash) options, action = action, nil |