summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-10-15 17:25:42 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2019-10-15 17:25:42 +0000
commitc5e2c064f26adc694d2f20a4188a7cc978890216 (patch)
tree87fa9955b754ecdd9cf7fa1d0c0c0ab0c88898ce
parent38bf3f5024649d32a1ac02c7f2db65c47b98d258 (diff)
downloadredmine-c5e2c064f26adc694d2f20a4188a7cc978890216.tar.gz
redmine-c5e2c064f26adc694d2f20a4188a7cc978890216.zip
code cleanup: rubocop: fix Layout/AccessModifierIndentation in lib/redmine/wiki_formatting/textile/formatter.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18686 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--.rubocop_todo.yml1
-rw-r--r--lib/redmine/wiki_formatting/textile/formatter.rb2
2 files changed, 1 insertions, 2 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml
index 4290b9e06..5d663a93e 100644
--- a/.rubocop_todo.yml
+++ b/.rubocop_todo.yml
@@ -25,7 +25,6 @@ Layout/AccessModifierIndentation:
- 'app/models/role.rb'
- 'app/models/setting.rb'
- 'app/models/tracker.rb'
- - 'lib/redmine/wiki_formatting/textile/formatter.rb'
# Cop supports --auto-correct.
# Configuration parameters: EnforcedStyle, IndentationWidth.
diff --git a/lib/redmine/wiki_formatting/textile/formatter.rb b/lib/redmine/wiki_formatting/textile/formatter.rb
index 7aabd6435..47ddfbb0f 100644
--- a/lib/redmine/wiki_formatting/textile/formatter.rb
+++ b/lib/redmine/wiki_formatting/textile/formatter.rb
@@ -108,7 +108,7 @@ module Redmine
sections
end
- private
+ private
# Patch for RedCloth. Fixed in RedCloth r128 but _why hasn't released it yet.
# <a href="http://code.whytheluckystiff.net/redcloth/changeset/128">http://code.whytheluckystiff.net/redcloth/changeset/128</a>