Checkpoint

This commit is contained in:
Nathan Sobo 2023-09-20 12:03:37 -06:00
parent 83dae46ec6
commit 5b0e333967
16 changed files with 794 additions and 582 deletions

View file

@ -529,7 +529,7 @@ impl Platform for MacPlatform {
None
};
if let Some(mut done_tx) = done_tx.take() {
if let Some(done_tx) = done_tx.take() {
let _ = done_tx.send(result);
}
});
@ -557,7 +557,7 @@ impl Platform for MacPlatform {
}
}
if let Some(mut done_tx) = done_tx.take() {
if let Some(done_tx) = done_tx.take() {
let _ = done_tx.send(result);
}
});