Browse Source

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
pull/147/head
Marius Balteanu 6 months ago
parent
commit
b7a190399f
2 changed files with 0 additions and 17 deletions
  1. 0
    5
      app/models/repository.rb
  2. 0
    12
      lib/redmine/scm/adapters/abstract_adapter.rb

+ 0
- 5
app/models/repository.rb 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

+ 0
- 12
lib/redmine/scm/adapters/abstract_adapter.rb 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

Loading…
Cancel
Save