mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2025-04-10 00:18:07 +00:00
fix: remove dbg
This commit is contained in:
parent
048614925b
commit
081d0c2893
1 changed files with 0 additions and 3 deletions
|
@ -83,11 +83,8 @@ impl HumanTime {
|
|||
let days = mdays / 86400;
|
||||
let day_secs = mdays % 86400;
|
||||
let hours = day_secs / 3600;
|
||||
dbg!(&day_secs);
|
||||
let minutes = day_secs % 3600 / 60;
|
||||
dbg!(&minutes);
|
||||
let seconds = day_secs % 60;
|
||||
dbg!(&seconds);
|
||||
let mut started = false;
|
||||
let mut string = String::new();
|
||||
string.push_str(&Self::plural(&mut started, "year", years, separator));
|
||||
|
|
Loading…
Reference in a new issue