Remove completed TODOs

This commit is contained in:
James 2018-08-04 20:29:11 +10:00
parent 390440c8b0
commit e8398a36ea
2 changed files with 0 additions and 3 deletions

View file

@ -88,7 +88,6 @@ impl InstallerFramework {
messages: &Sender<InstallMessage>,
fresh_install: bool,
) -> Result<(), String> {
// TODO: Uninstall packages that aren't selected
info!(
"Framework: Installing {:?} to {:?}",
items,

View file

@ -78,7 +78,6 @@ impl Service for WebService {
fn call(&self, req: Self::Request) -> Self::Future {
Box::new(future::ok(match (req.method(), req.path()) {
// This endpoint should be usable directly from a <script> tag during loading.
// TODO: Handle errors
(&Get, "/api/config") => {
let framework = self
.framework
@ -99,7 +98,6 @@ impl Service for WebService {
.with_body(file)
}
// This endpoint should be usable directly from a <script> tag during loading.
// TODO: Handle errors
(&Get, "/api/packages") => {
let framework = self
.framework