Skip to content

Commit

Permalink
Removed debugging println statement
Browse files Browse the repository at this point in the history
  • Loading branch information
zack-emmert committed May 30, 2018
1 parent 3dba388 commit 7854ee5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ fn main() {
if let Some(mut channel) = toml_request::<types::Channel>(&url) {
for update in channel.sort_by_version().updates.iter() {
if update.version() > &version {
println!("{:?}",update);
if let Some(update_file) = toml_request::<types::UpdateFile>(update.url()) {
update_file.update();
ts_file.set_len(0).unwrap();
Expand Down Expand Up @@ -86,4 +85,4 @@ fn toml_request<T>(url: &str) -> Option<T> where for<'de> T: serde::Deserialize<
None
}
}
}
}

0 comments on commit 7854ee5

Please sign in to comment.