aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2011-01-17 14:33:34 -0800
committerAaron Patterson <aaron.patterson@gmail.com>2011-01-17 14:33:34 -0800
commit9702159373a4df8f05d06e79dfa0f57723f8bfc8 (patch)
tree2c55346d6288435a26aee2218a8e99000354caf3 /actionpack/lib
parentfdfabc99e80d5c48bdaf1c046c592ac81dc4c2c6 (diff)
downloadrails-9702159373a4df8f05d06e79dfa0f57723f8bfc8.tar.gz
rails-9702159373a4df8f05d06e79dfa0f57723f8bfc8.tar.bz2
rails-9702159373a4df8f05d06e79dfa0f57723f8bfc8.zip
removing more unused variables
Diffstat (limited to 'actionpack/lib')
-rw-r--r--actionpack/lib/action_dispatch/http/cache.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/http/cache.rb b/actionpack/lib/action_dispatch/http/cache.rb
index 1d2f7e4f19..4f4cb96a74 100644
--- a/actionpack/lib/action_dispatch/http/cache.rb
+++ b/actionpack/lib/action_dispatch/http/cache.rb
@@ -43,7 +43,7 @@ module ActionDispatch
alias :etag? :etag
def initialize(*)
- status, header, body = super
+ super
@cache_control = {}
@etag = self["ETag"]