summaryrefslogtreecommitdiffstats
path: root/config/initializers/10-patches.rb
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 /config/initializers/10-patches.rb
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 'config/initializers/10-patches.rb')
-rw-r--r--config/initializers/10-patches.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/initializers/10-patches.rb b/config/initializers/10-patches.rb
index 20d442add..df8afc291 100644
--- a/config/initializers/10-patches.rb
+++ b/config/initializers/10-patches.rb
@@ -98,7 +98,7 @@ module ActionView
if (Array(values) & [:xml, :json]).any?
values << :api
end
- super(values)
+ super
end
end)
end