diff options
author | Go MAEDA <maeda@farend.jp> | 2022-09-01 04:53:28 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2022-09-01 04:53:28 +0000 |
commit | 45fafc7e44db200329fb564dea71042524fc6822 (patch) | |
tree | 4b823ea1f31927c8f6e76ea3c7d9496c10dd30d9 /lib | |
parent | 59841e5b681323837f975e03b4be8cd0bbc4bc97 (diff) | |
download | redmine-45fafc7e44db200329fb564dea71042524fc6822.tar.gz redmine-45fafc7e44db200329fb564dea71042524fc6822.zip |
Fix RuboCop offense Layout/LineLength due to r21785 (#37586).
git-svn-id: https://svn.redmine.org/redmine/trunk@21791 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/scm/adapters/abstract_adapter.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/redmine/scm/adapters/abstract_adapter.rb b/lib/redmine/scm/adapters/abstract_adapter.rb index 6edc9c9de..219c47fc7 100644 --- a/lib/redmine/scm/adapters/abstract_adapter.rb +++ b/lib/redmine/scm/adapters/abstract_adapter.rb @@ -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 |