Remove deprecated methods in Repository and AbstractAdapter (#39558).

Patch by Go MAEDA.

git-svn-id: https://svn.redmine.org/redmine/trunk@22457 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu
2023-11-18 12:58:19 +00:00
parent 72dcb6a570
commit b7a190399f
2 changed files with 0 additions and 17 deletions

View File

@@ -186,11 +186,6 @@ class Repository < ActiveRecord::Base
scm.supports_annotate?
end
def supports_all_revisions?
ActiveSupport::Deprecation.warn 'Repository#supports_all_revisions? is deprecated and will be removed in Redmine 6.0. Please use #supports_history instead.'
supports_history?
end
def supports_history?
true
end

View File

@@ -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