summaryrefslogtreecommitdiffstats
path: root/lib/redmine/wiki_formatting
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2024-05-23 11:25:16 +0000
committerGo MAEDA <maeda@farend.jp>2024-05-23 11:25:16 +0000
commitb42d7984b1cc2530488d136ea215dfc59984ee44 (patch)
tree024c5d613b5561d4ffbeeaca44a26a369500e51d /lib/redmine/wiki_formatting
parent107fe074b2b7b0556a67ac7f1f203501f32617b7 (diff)
downloadredmine-b42d7984b1cc2530488d136ea215dfc59984ee44.tar.gz
redmine-b42d7984b1cc2530488d136ea215dfc59984ee44.zip
Fix RuboCop offense Style/SuperArguments (#39887).
git-svn-id: https://svn.redmine.org/redmine/trunk@22842 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/wiki_formatting')
-rw-r--r--lib/redmine/wiki_formatting/common_mark/markdown_filter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/wiki_formatting/common_mark/markdown_filter.rb b/lib/redmine/wiki_formatting/common_mark/markdown_filter.rb
index 8b28c2e95..916c8883c 100644
--- a/lib/redmine/wiki_formatting/common_mark/markdown_filter.rb
+++ b/lib/redmine/wiki_formatting/common_mark/markdown_filter.rb
@@ -27,7 +27,7 @@ module Redmine
# options
class MarkdownFilter < HTML::Pipeline::TextFilter
def initialize(text, context = nil, result = nil)
- super(text, context, result)
+ super
@text = @text.delete "\r"
end