mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[bundler/bundler] Inline expanded_deps
It's now only used once, and doing it like this is consistent with the previous line. https://github.com/bundler/bundler/commit/7d27330fc7
This commit is contained in:
parent
bdcd1990ad
commit
ed37de1c82
1 changed files with 1 additions and 2 deletions
|
@ -812,9 +812,8 @@ module Bundler
|
|||
end
|
||||
|
||||
resolve = SpecSet.new(converged)
|
||||
expanded_deps = expand_dependencies(deps, true)
|
||||
@locked_specs_incomplete_for_platform = !resolve.for(expand_dependencies(deps), @unlock[:gems], true, true)
|
||||
resolve = resolve.for(expanded_deps, @unlock[:gems], false, false, false)
|
||||
resolve = resolve.for(expand_dependencies(deps, true), @unlock[:gems], false, false, false)
|
||||
diff = nil
|
||||
|
||||
# Now, we unlock any sources that do not have anymore gems pinned to it
|
||||
|
|
Loading…
Reference in a new issue