Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
mio-19 committed Oct 24, 2024
1 parent 940f3d8 commit f89acee
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ trait ProvideMultithread extends ProvideImpl {
val done = propagator.run(using state, more)
if (done) {
p.setAlive(false)
state.propagators.remove(p)
val _ = state.propagators.remove(p)
}
}
}
Expand All @@ -253,7 +253,7 @@ trait ProvideMultithread extends ProvideImpl {
val done = propagator.run(using state, more)
if (done) {
p.setAlive(false)
state.propagators.remove(p)
val _ = state.propagators.remove(p)
}
}
}
Expand Down Expand Up @@ -285,7 +285,7 @@ trait ProvideMultithread extends ProvideImpl {
zonkResult match {
case ZonkResult.Done =>
p.setAlive(false)
propagators.remove(p)
val _ = propagators.remove(p)
case ZonkResult.Require(needed) =>
needed.foreach { n =>
if (n.noStableValue) {
Expand Down

0 comments on commit f89acee

Please sign in to comment.