From febee2dc0c20cab360f75c2088c8f59b13a12e95 Mon Sep 17 00:00:00 2001 From: Jason Rodney Hansen Date: Sun, 28 Nov 2021 09:40:33 -0700 Subject: [PATCH] No need to clone format --- helix-core/src/increment/date_time.rs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/helix-core/src/increment/date_time.rs b/helix-core/src/increment/date_time.rs index 393801044..195bc14b6 100644 --- a/helix-core/src/increment/date_time.rs +++ b/helix-core/src/increment/date_time.rs @@ -13,7 +13,7 @@ use crate::{Range, Tendril}; pub struct DateTimeIncrementor { date_time: NaiveDateTime, range: Range, - format: Format, + fmt: &'static str, field: DateField, } @@ -97,7 +97,7 @@ impl DateTimeIncrementor { Some(DateTimeIncrementor { date_time, range, - format: format.clone(), + fmt: format.fmt, field, }) }) @@ -117,10 +117,7 @@ impl Increment for DateTimeIncrementor { } .unwrap_or(self.date_time); - ( - self.range, - date_time.format(self.format.fmt).to_string().into(), - ) + (self.range, date_time.format(self.fmt).to_string().into()) } }