aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/concurrent_hash.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/concurrent_hash.rb')
-rw-r--r--activesupport/lib/active_support/concurrent_hash.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/concurrent_hash.rb b/activesupport/lib/active_support/concurrent_hash.rb
index c9f9b16da3..40224765a7 100644
--- a/activesupport/lib/active_support/concurrent_hash.rb
+++ b/activesupport/lib/active_support/concurrent_hash.rb
@@ -9,6 +9,7 @@ module ActiveSupport
def []=(k,v)
@mutex.synchronize { @backup_cache[k] = v }
@frozen_cache = @backup_cache.dup.freeze
+ v
end
def [](k)