mirror of
https://github.com/redmine/redmine.git
synced 2026-05-06 08:16:05 +02:00
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:
@@ -57,7 +57,7 @@ module Redmine
|
||||
field
|
||||
end
|
||||
end
|
||||
super row
|
||||
super(row)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user