summaryrefslogtreecommitdiffstats
path: root/lib/redmine/scm
diff options
context:
space:
mode:
authorGo MAEDA <maeda@farend.jp>2021-12-29 06:12:27 +0000
committerGo MAEDA <maeda@farend.jp>2021-12-29 06:12:27 +0000
commitb6a26a60f3d425f340adc76e27d38c19505f254c (patch)
tree14475ea267754be1db511bff8ea1cfbf8901faef /lib/redmine/scm
parent52aef905ff92ebb34b7b6dbf870405f2351b41b4 (diff)
downloadredmine-b6a26a60f3d425f340adc76e27d38c19505f254c.tar.gz
redmine-b6a26a60f3d425f340adc76e27d38c19505f254c.zip
Fixes for Performance/StringIdentifierArgument introduced in RuboCop Performance 1.13.0 (#35142).
git-svn-id: http://svn.redmine.org/redmine/trunk@21330 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib/redmine/scm')
-rw-r--r--lib/redmine/scm/adapters/abstract_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/redmine/scm/adapters/abstract_adapter.rb b/lib/redmine/scm/adapters/abstract_adapter.rb
index 4c12f4a13..c1102fc73 100644
--- a/lib/redmine/scm/adapters/abstract_adapter.rb
+++ b/lib/redmine/scm/adapters/abstract_adapter.rb
@@ -86,7 +86,7 @@ module Redmine
end
def supports_annotate?
- respond_to?('annotate')
+ respond_to?(:annotate)
end
def root_url