diff options
author | Fredrik Meringdal <fmeringdal@hotmail.com> | 2020-11-06 12:30:44 +0100 |
---|---|---|
committer | Fredrik Meringdal <fmeringdal@hotmail.com> | 2020-11-06 12:30:44 +0100 |
commit | 6706079a22a149d8158bd1a208c740ea4e805a20 (patch) | |
tree | 04be21f09de8a1b164bd11ceb297fd74dc4bba97 | |
parent | 2b01efb41ca728e8c31dd7e450c38c9d1d3ce6c0 (diff) | |
download | rust_rrule-6706079a22a149d8158bd1a208c740ea4e805a20.zip |
removed println
-rw-r--r-- | src/rruleset_iter.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/rruleset_iter.rs b/src/rruleset_iter.rs index 9cc2c3e..efc8368 100644 --- a/src/rruleset_iter.rs +++ b/src/rruleset_iter.rs @@ -127,7 +127,6 @@ impl<'a> RRuleSetIter<'a> { pub fn iter(&mut self) -> Vec<DateTime<Tz>> { // Add all exdates to exdate_hash for date in &self.rrule_set.exdate { - println!("Exdate timestamp: {}", date.timestamp()); self.exdate_hash.insert(date.timestamp(), ()); } |