diff options
author | Fredrik Meringdal <fmeringdal@hotmail.com> | 2020-10-26 23:47:37 +0100 |
---|---|---|
committer | Fredrik Meringdal <fmeringdal@hotmail.com> | 2020-10-26 23:47:37 +0100 |
commit | 02cd1778aa330564b764751f9c8be8e67a46a821 (patch) | |
tree | ebf365d479ea9a8a6e6c5524eb79a6f266a636d1 | |
parent | 3a637066988e6d5a6b4368842e213ce2f9b1d2a8 (diff) | |
download | rust_rrule-02cd1778aa330564b764751f9c8be8e67a46a821.zip |
removed debug statement
-rw-r--r-- | src/datetime.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/datetime.rs b/src/datetime.rs index 69b25ca..46b1643 100644 --- a/src/datetime.rs +++ b/src/datetime.rs @@ -12,7 +12,6 @@ pub type DTime = DateTime<Tz>; pub fn from_ordinal(ordinal: isize, tz: &Tz) -> DTime { let timestamp = ordinal * 24 * 60 * 60; - let s = tz.timestamp(timestamp as i64, 0); tz.timestamp(timestamp as i64, 0) } |