[ruby/rdoc] Remove code for versions older than Ruby 2.6

https://github.com/ruby/rdoc/commit/0d10f460eb
This commit is contained in:
Nobuyoshi Nakada 2023-09-05 09:49:27 +09:00 коммит произвёл git
Родитель 736092ec11
Коммит dab6d55db1
2 изменённых файлов: 3 добавлений и 11 удалений

Просмотреть файл

@ -20,12 +20,8 @@ class RDoc::ERBIO < ERB
##
# Defaults +eoutvar+ to 'io', otherwise is identical to ERB's initialize
def initialize str, safe_level = nil, legacy_trim_mode = nil, legacy_eoutvar = 'io', trim_mode: nil, eoutvar: 'io'
if RUBY_VERSION >= '2.6'
super(str, trim_mode: trim_mode, eoutvar: eoutvar)
else
super(str, safe_level, legacy_trim_mode, legacy_eoutvar)
end
def initialize str, trim_mode: nil, eoutvar: 'io'
super(str, trim_mode: trim_mode, eoutvar: eoutvar)
end
##

Просмотреть файл

@ -778,11 +778,7 @@ class RDoc::Generator::Darkfish
erbout = "_erbout_#{file_var}"
end
if RUBY_VERSION >= '2.6'
template = klass.new template, trim_mode: '-', eoutvar: erbout
else
template = klass.new template, nil, '-', erbout
end
template = klass.new template, trim_mode: '-', eoutvar: erbout
@template_cache[file] = template
template
end