mirror of
https://github.com/redmine/redmine.git
synced 2026-01-17 13:03:01 +01:00
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:
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user