aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorAkira Matsuda <ronnie@dio.jp>2019-07-31 17:30:25 +0900
committerAkira Matsuda <ronnie@dio.jp>2019-07-31 17:41:34 +0900
commit34a7e68bb9a7fa07c12092d916317f837b422a6a (patch)
treec8f3764a5f3009945e0e3086afeff699a3ea94b8 /actionpack
parentc46172171b7beadcd28d71c1d5473b1bde0f7ede (diff)
downloadrails-34a7e68bb9a7fa07c12092d916317f837b422a6a.tar.gz
rails-34a7e68bb9a7fa07c12092d916317f837b422a6a.tar.bz2
rails-34a7e68bb9a7fa07c12092d916317f837b422a6a.zip
Reduce Array allocations
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/lib/action_dispatch/http/cache.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/http/cache.rb b/actionpack/lib/action_dispatch/http/cache.rb
index 7be30be77a..0258d85564 100644
--- a/actionpack/lib/action_dispatch/http/cache.rb
+++ b/actionpack/lib/action_dispatch/http/cache.rb
@@ -150,8 +150,8 @@ module ActionDispatch
directive, argument = segment.split("=", 2)
if SPECIAL_KEYS.include? directive
- key = directive.tr("-", "_")
- cache_control[key.to_sym] = argument || true
+ directive.tr!("-", "_")
+ cache_control[directive.to_sym] = argument || true
else
cache_control[:extras] ||= []
cache_control[:extras] << segment