Remove debug print statement from previous commit
This commit is contained in:
parent
68cccc840b
commit
49b6728c78
1 changed files with 0 additions and 1 deletions
|
@ -174,7 +174,6 @@ impl From<u64> for DateTime {
|
||||||
let mut month = 1;
|
let mut month = 1;
|
||||||
let mut m_days = u64::from(days_in_month(month, year));
|
let mut m_days = u64::from(days_in_month(month, year));
|
||||||
while m_days <= days {
|
while m_days <= days {
|
||||||
println!("Days in month {month}: {m_days}");
|
|
||||||
days -= m_days;
|
days -= m_days;
|
||||||
month += 1;
|
month += 1;
|
||||||
m_days = u64::from(days_in_month(month, year));
|
m_days = u64::from(days_in_month(month, year));
|
||||||
|
|
Loading…
Add table
Reference in a new issue