Browse Source

code cleanup: rubocop: fix Layout/SpaceBeforeComma in lib/redmine/export/pdf.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@18839 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.1.0
Toshi MARUYAMA 4 years ago
parent
commit
5d4f94142b
2 changed files with 1 additions and 2 deletions
  1. 0
    1
      .rubocop_todo.yml
  2. 1
    1
      lib/redmine/export/pdf.rb

+ 0
- 1
.rubocop_todo.yml View File

@@ -248,7 +248,6 @@ Layout/SpaceAroundOperators:
# Cop supports --auto-correct.
Layout/SpaceBeforeComma:
Exclude:
- 'lib/redmine/export/pdf.rb'
- 'test/mocks/open_id_authentication_mock.rb'

# Cop supports --auto-correct.

+ 1
- 1
lib/redmine/export/pdf.rb View File

@@ -70,7 +70,7 @@ module Redmine
Redmine::WikiFormatting.to_html(Setting.text_formatting, text)
end

def RDMCell(w ,h=0, txt='', border=0, ln=0, align='', fill=0, link='')
def RDMCell(w, h=0, txt='', border=0, ln=0, align='', fill=0, link='')
cell(w, h, txt, border, ln, align, fill, link)
end


Loading…
Cancel
Save