mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
PERF: Don't create unnecessary objects
This commit is contained in:
parent
10249d7b77
commit
4920312643
1 changed files with 1 additions and 1 deletions
|
@ -248,7 +248,7 @@ module ActionMailer
|
||||||
else
|
else
|
||||||
ctype, *attrs = @content_type.split(/;\s*/)
|
ctype, *attrs = @content_type.split(/;\s*/)
|
||||||
attrs = Hash[attrs.map { |attr| attr.split(/\=/, 2) }]
|
attrs = Hash[attrs.map { |attr| attr.split(/\=/, 2) }]
|
||||||
[ctype, {"charset" => @charset}.merge(attrs)]
|
[ctype, {"charset" => @charset}.merge!(attrs)]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue