[rubygems/rubygems] Array is already uniq, no need to deduplicate it

https://github.com/rubygems/rubygems/commit/3212ae14b7
This commit is contained in:
David Rodríguez 2022-08-02 13:23:24 +02:00 коммит произвёл git
Родитель b81858cf6f
Коммит f70b26af47
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -64,7 +64,7 @@ module Bundler
end
def materialize(deps)
materialized = self.for(deps, true).uniq
materialized = self.for(deps, true)
SpecSet.new(materialized)
end