aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-06-08 14:28:36 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-06-08 16:15:13 -0700
commita470bb36128cfdddd888492b7ac972ee582f6acb (patch)
treeef2df463cf87f7760d48feeb9d7a5c5ffee93b01 /actionpack/lib/action_controller
parent30a3b6b4fc56390eec762c879644c95cd09622b0 (diff)
downloadrails-a470bb36128cfdddd888492b7ac972ee582f6acb.tar.gz
rails-a470bb36128cfdddd888492b7ac972ee582f6acb.tar.bz2
rails-a470bb36128cfdddd888492b7ac972ee582f6acb.zip
Remove extraneous response_obj
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r--actionpack/lib/action_controller/abstract/base.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/actionpack/lib/action_controller/abstract/base.rb b/actionpack/lib/action_controller/abstract/base.rb
index 87083a4d79..306f3d2ccb 100644
--- a/actionpack/lib/action_controller/abstract/base.rb
+++ b/actionpack/lib/action_controller/abstract/base.rb
@@ -13,7 +13,6 @@ module AbstractController
class Base
attr_internal :response_body
- attr_internal :response_obj
attr_internal :action_name
class << self
@@ -63,10 +62,6 @@ module AbstractController
abstract!
- def initialize
- self.response_obj = {}
- end
-
def process(action)
@_action_name = action_name = action.to_s