From 49b6728c784b4ab5da96f12a1c15ee6bd132881d Mon Sep 17 00:00:00 2001 From: Nathan Fisher Date: Mon, 26 Jun 2023 12:49:55 -0400 Subject: [PATCH] Remove debug print statement from previous commit --- src/time/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/time/mod.rs b/src/time/mod.rs index c32c045..561716b 100644 --- a/src/time/mod.rs +++ b/src/time/mod.rs @@ -174,7 +174,6 @@ impl From 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));