]> source.dussan.org Git - redmine.git/commitdiff
Fix RuboCop offense Layout/LineLength due to r21785 (#37586).
authorGo MAEDA <maeda@farend.jp>
Thu, 1 Sep 2022 04:53:28 +0000 (04:53 +0000)
committerGo MAEDA <maeda@farend.jp>
Thu, 1 Sep 2022 04:53:28 +0000 (04:53 +0000)
git-svn-id: https://svn.redmine.org/redmine/trunk@21791 e93f8b46-1217-0410-a6f0-8f06a7374b81

lib/redmine/scm/adapters/abstract_adapter.rb

index 6edc9c9dee158460da1baa00873ede385743e6ce..219c47fc7dcd01fec1fc46b3ca348c80483830a7 100644 (file)
@@ -167,7 +167,8 @@ module Redmine
         end
 
         def with_trailling_slash(path)
-          ActiveSupport::Deprecation.warn 'Redmine::Scm::Adapters::AbstractAdapter#with_trailling_slash is deprecated and will be removed in Redmine 6.0. Please use #with_trailing_slash instead.'
+          ActiveSupport::Deprecation.warn 'Redmine::Scm::Adapters::AbstractAdapter#with_trailling_slash is ' \
+           'deprecated and will be removed in Redmine 6.0. Please use #with_trailing_slash instead.'
           with_trailing_slash(path)
         end
 
@@ -182,7 +183,8 @@ module Redmine
         end
 
         def without_trailling_slash(path)
-          ActiveSupport::Deprecation.warn 'Redmine::Scm::Adapters::AbstractAdapter#without_trailling_slash is deprecated and will be removed in Redmine 6.0. Please use #without_trailing_slash instead.'
+          ActiveSupport::Deprecation.warn 'Redmine::Scm::Adapters::AbstractAdapter#without_trailling_slash is ' \
+          'deprecated and will be removed in Redmine 6.0. Please use #without_trailing_slash instead.'
           without_trailing_slash(path)
         end