Remove an old debug statement

This commit is contained in:
Paul van Tilburg 2017-12-27 21:50:46 +01:00
parent f9ee63c765
commit 15b8dbe614
1 changed files with 0 additions and 1 deletions

View File

@ -64,7 +64,6 @@ fn list_update(list_id: String, new_list: Json<List>, lists: State<ListStore>) -
let mut lists = lists.write().unwrap();
let list = lists.iter_mut().find( |list| list.id == list_id )?;
list.update_data(&new_list.data);
println!("update list {} with list data {:?}", list_id, new_list.data);
Some(Json(list.clone()))
}