Suppress warnings: reserved for numbered parameter

This commit is contained in:
Kazuki Tsujimoto 2020-04-05 18:24:59 +09:00
Родитель cab9788e0c
Коммит b25ef4bf70
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: BCEA306C49B81CD7
1 изменённых файлов: 1 добавлений и 1 удалений

2
enc/unicode/case-folding.rb Executable file → Normal file
Просмотреть файл

@ -232,7 +232,7 @@ class CaseMapping
@version = nil
IO.foreach(File.join(mapping_directory, 'UnicodeData.txt'), mode: "rb") do |line|
next if line =~ /^</
code, _1,_2,_3,_4,_5,_6,_7,_8,_9,_10,_11, upper, lower, title = line.chomp.split ';'
code, _, _, _, _, _, _, _, _, _, _, _, upper, lower, title = line.chomp.split ';'
unless upper and lower and title and (upper+lower+title)==''
@mappings[code] = MapItem.new(code, upper, lower, title)
end