Remove dbg statement

This commit is contained in:
Isak 2023-09-16 17:52:32 -04:00
parent ec68d084e9
commit 426582906c

View file

@ -374,7 +374,6 @@ impl RocDec {
let is_negative = self.as_i128() < 0;
let decimal_location = string.len() - Self::DECIMAL_PLACES;
dbg!(decimal_location, is_negative, string.len());
// skip trailing zeros
let last_nonzero_byte = string.trim_end_matches('0').len();