Fix Style/MapIntoArray cop in context helper (#29885)

This commit is contained in:
Matt Jankowski 2024-04-10 08:46:39 -04:00 committed by GitHub
parent 4948a063d2
commit b57ee5cf5b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,13 +48,11 @@ module ContextHelper
end
def serialized_context(named_contexts_map, context_extensions_map)
context_array = []
named_contexts = named_contexts_map.keys
context_extensions = context_extensions_map.keys
named_contexts.each do |key|
context_array << NAMED_CONTEXT_MAP[key]
context_array = named_contexts.map do |key|
NAMED_CONTEXT_MAP[key]
end
extensions = context_extensions.each_with_object({}) do |key, h|