File tree Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Expand file tree Collapse file tree 1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -369,18 +369,6 @@ impl SatResolve {
369
369
// `can_see` as being in terms of a set of `activations_key`s
370
370
let mut can_see: HashMap < _ , HashMap < _ , varisat:: Var > > = HashMap :: new ( ) ;
371
371
372
- // if `p` `publicly_exports` `export` then it `can_see` `export`
373
- for ( & p, exports) in & publicly_exports {
374
- for ( & export_pid, export_var) in exports {
375
- let our_var = can_see
376
- . entry ( p)
377
- . or_default ( )
378
- . entry ( export_pid)
379
- . or_insert_with ( || cnf. new_var ( ) ) ;
380
- cnf. add_clause ( & [ export_var. negative ( ) , our_var. positive ( ) ] ) ;
381
- }
382
- }
383
-
384
372
// if `p` has a `dep` that selected `ver` then it `can_see` all the things that the selected version `publicly_exports`
385
373
for ( & p, deps) in version_selected_for. iter ( ) {
386
374
for ( _, versions) in deps {
You can’t perform that action at this time.
0 commit comments