Fix RuboCop offense Style/SuperWithArgsParentheses (#39887).

git-svn-id: https://svn.redmine.org/redmine/trunk@22530 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2023-12-20 07:15:11 +00:00
parent b552720590
commit c51e4937e7
13 changed files with 16 additions and 16 deletions

View File

@@ -57,7 +57,7 @@ module Redmine
field
end
end
super row
super(row)
end
end
end

View File

@@ -453,7 +453,7 @@ module Redmine
@parent = options[:parent]
@child_menus = options[:children]
@last = options[:last] || false
super @name.to_sym
super(@name.to_sym)
end
def caption(project=nil)

View File

@@ -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, context, result)
@text = @text.delete "\r"
end