summaryrefslogtreecommitdiffstats
path: root/lib/redmine
diff options
context:
space:
mode:
Diffstat (limited to 'lib/redmine')
-rw-r--r--lib/redmine/scm/adapters/abstract_adapter.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/redmine/scm/adapters/abstract_adapter.rb b/lib/redmine/scm/adapters/abstract_adapter.rb
index 8e74086c5..0baf2962c 100644
--- a/lib/redmine/scm/adapters/abstract_adapter.rb
+++ b/lib/redmine/scm/adapters/abstract_adapter.rb
@@ -167,12 +167,6 @@ module Redmine
path.end_with?('/') ? path : "#{path}/"
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.'
- with_trailing_slash(path)
- end
-
def without_leading_slash(path)
path ||= ''
path.gsub(%r{^/+}, '')
@@ -183,12 +177,6 @@ module Redmine
path.end_with?('/') ? path[0..-2] : path
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.'
- without_trailing_slash(path)
- end
-
def valid_name?(name)
return true if name.nil?
return true if name.is_a?(Integer) && name > 0