Browse Source

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
tags/4.2.0
Toshi MARUYAMA 4 years ago
parent
commit
33ed57a223
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      app/models/mailer.rb

+ 1
- 1
app/models/mailer.rb View File

@@ -742,7 +742,7 @@ class Mailer < ActionMailer::Base

# Appends a Redmine header field (name is prepended with 'X-Redmine-')
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

# Singleton class method is public

Loading…
Cancel
Save