1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[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 committed by git
parent b81858cf6f
commit f70b26af47

View file

@ -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