1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-19 15:01:14 +00:00

cleanup: rubocop: fix Layout/SpaceAfterComma in app/models/mailer.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@19271 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2019-11-24 16:45:01 +00:00
parent 430236a2af
commit 33ed57a223

View File

@ -742,7 +742,7 @@ class Mailer < ActionMailer::Base
# Appends a Redmine header field (name is prepended with 'X-Redmine-') # Appends a Redmine header field (name is prepended with 'X-Redmine-')
def redmine_headers(h) def redmine_headers(h)
h.each { |k,v| headers["X-Redmine-#{k}"] = v.to_s } h.each {|k, v| headers["X-Redmine-#{k}"] = v.to_s}
end end
# Singleton class method is public # Singleton class method is public