mirror of
https://github.com/redmine/redmine.git
synced 2026-05-07 13:27:40 +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:
@@ -475,7 +475,7 @@ class Issue < ActiveRecord::Base
|
||||
send "#{attr}=", attrs.delete(attr)
|
||||
end
|
||||
end
|
||||
super attrs, *args
|
||||
super(attrs, *args)
|
||||
end
|
||||
|
||||
def attributes=(new_attributes)
|
||||
|
||||
Reference in New Issue
Block a user