[ruby/fiddle] Remove needless rescue

GitHub: fix GH-15

Reported by Eneroth3. Thanks!!!

https://github.com/ruby/fiddle/commit/f3d70b81ec
This commit is contained in:
Sutou Kouhei 2020-09-28 07:06:27 +09:00 коммит произвёл Sutou Kouhei
Родитель aff5eaced4
Коммит 1867088d90
1 изменённых файлов: 1 добавлений и 5 удалений

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

@ -83,11 +83,7 @@ module Fiddle
when Importer
lib.handlers
else
begin
Fiddle.dlopen(lib)
rescue DLError
raise(DLError, "can't load #{lib}")
end
Fiddle.dlopen(lib)
end
}.flatten()
@handler = CompositeHandler.new(handles)