Remove TODOs

This commit is contained in:
link2xt
2023-03-19 10:17:18 +00:00
parent 3177f9967d
commit 17de3d3236

View File

@@ -131,7 +131,6 @@ impl SchedulerState {
None => return, None => return,
}; };
drop(inner); drop(inner);
// TODO: maybe this called code should move into scheduler.maybe_network() instead?
connectivity::idle_interrupted(inbox, oboxes).await; connectivity::idle_interrupted(inbox, oboxes).await;
} }
@@ -149,8 +148,6 @@ impl SchedulerState {
None => return, None => return,
}; };
drop(inner); drop(inner);
// TODO; maybe this called code should move into scheduler.maybe_network_lost()
// instead?
connectivity::maybe_network_lost(context, stores).await; connectivity::maybe_network_lost(context, stores).await;
} }