From 33ed57a223da36b9a2f3ae8cd46ef4b817bbda23 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Sun, 24 Nov 2019 16:45:01 +0000 Subject: [PATCH] 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 --- app/models/mailer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/mailer.rb b/app/models/mailer.rb index 8253bccf1..550c149cb 100644 --- a/app/models/mailer.rb +++ b/app/models/mailer.rb @@ -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 -- 2.39.5