aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/http/headers.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2009-12-28 16:28:26 -0800
committerJeremy Kemper <jeremy@bitsweat.net>2009-12-28 17:36:08 -0800
commit9a650a6547d2a83004db1bf913e26a8daa1c0b6e (patch)
tree28ba954aa7ea327187e30b98faf044bf9cfbf201 /actionpack/lib/action_dispatch/http/headers.rb
parent6d390671f639b3314437054df0d393cef10493bd (diff)
downloadrails-9a650a6547d2a83004db1bf913e26a8daa1c0b6e.tar.gz
rails-9a650a6547d2a83004db1bf913e26a8daa1c0b6e.tar.bz2
rails-9a650a6547d2a83004db1bf913e26a8daa1c0b6e.zip
Silence some trivial warnings: shadowed local vars, indentation mismatches
Diffstat (limited to 'actionpack/lib/action_dispatch/http/headers.rb')
-rw-r--r--actionpack/lib/action_dispatch/http/headers.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/actionpack/lib/action_dispatch/http/headers.rb b/actionpack/lib/action_dispatch/http/headers.rb
index 2a41b4dbad..1e43104f0a 100644
--- a/actionpack/lib/action_dispatch/http/headers.rb
+++ b/actionpack/lib/action_dispatch/http/headers.rb
@@ -6,13 +6,13 @@ module ActionDispatch
extend ActiveSupport::Memoizable
def initialize(*args)
- if args.size == 1 && args[0].is_a?(Hash)
- super()
- update(args[0])
- else
- super
- end
- end
+ if args.size == 1 && args[0].is_a?(Hash)
+ super()
+ update(args[0])
+ else
+ super
+ end
+ end
def [](header_name)
if include?(header_name)