PERF: Don't create unnecessary objects

This commit is contained in:
Santiago Pastorino 2010-10-03 14:58:18 -02:00
parent 10249d7b77
commit 4920312643
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ module ActionMailer
else
ctype, *attrs = @content_type.split(/;\s*/)
attrs = Hash[attrs.map { |attr| attr.split(/\=/, 2) }]
[ctype, {"charset" => @charset}.merge(attrs)]
[ctype, {"charset" => @charset}.merge!(attrs)]
end
end
end