diff options
author | Go MAEDA <maeda@farend.jp> | 2024-05-23 11:25:16 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-05-23 11:25:16 +0000 |
commit | b42d7984b1cc2530488d136ea215dfc59984ee44 (patch) | |
tree | 024c5d613b5561d4ffbeeaca44a26a369500e51d /lib/redmine/export/csv.rb | |
parent | 107fe074b2b7b0556a67ac7f1f203501f32617b7 (diff) | |
download | redmine-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/export/csv.rb')
-rw-r--r-- | lib/redmine/export/csv.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/export/csv.rb b/lib/redmine/export/csv.rb index 9e0f23c5c..8e56b38f3 100644 --- a/lib/redmine/export/csv.rb +++ b/lib/redmine/export/csv.rb @@ -57,7 +57,7 @@ module Redmine field end end - super(row) + super end end end |