Remove debug print statement from previous commit

This commit is contained in:
Nathan Fisher 2023-06-26 12:49:55 -04:00
parent 68cccc840b
commit 49b6728c78

View file

@ -174,7 +174,6 @@ impl From<u64> for DateTime {
let mut month = 1;
let mut m_days = u64::from(days_in_month(month, year));
while m_days <= days {
println!("Days in month {month}: {m_days}");
days -= m_days;
month += 1;
m_days = u64::from(days_in_month(month, year));