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>, messages: &Sender<InstallMessage>,
fresh_install: bool, fresh_install: bool,
) -> Result<(), String> { ) -> Result<(), String> {
// TODO: Uninstall packages that aren't selected
info!( info!(
"Framework: Installing {:?} to {:?}", "Framework: Installing {:?} to {:?}",
items, items,

View file

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