Remove a println!

This commit is contained in:
Eryn Wells 2017-04-15 10:17:50 -07:00
parent 50baf2c118
commit 4f11be1316

View file

@ -61,7 +61,6 @@ impl NumberBuilder {
pub fn extend_decimal_value<'a>(&'a mut self, digit: char) -> &'a mut Self {
self.extend_value(digit);
self.point += 1;
println!("value = {}, point = {}", self.value, self.point);
self
}