From c440c518d238f41087fd3b925ca579083eea34e2 Mon Sep 17 00:00:00 2001 From: Bill Thiede Date: Sat, 12 Oct 2019 17:45:19 -0700 Subject: [PATCH] Remove debug prints. --- rtiow/src/human.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/rtiow/src/human.rs b/rtiow/src/human.rs index 16e9518..4f2787d 100644 --- a/rtiow/src/human.rs +++ b/rtiow/src/human.rs @@ -214,8 +214,6 @@ impl Scales { let ndx = 0; for ndx in 0..self.suffixes.len() { - println!("{}", self.suffixes[ndx]); - if value == self.suffixes[ndx] { return self.base.pow(ndx as u32) as f64; } @@ -237,14 +235,6 @@ impl Scales { index += 1; } - println!( - "\t\t{}: {} {} --- {}", - value, - index, - self.base.pow(index as u32), - value / (self.base.pow(index as u32) as f64) - ); - ScaledValue { value: (value / self.base.pow((index) as u32) as f64) as f32, suffix: self.suffixes[index].to_owned(),