From 0b5b0a426dcf9b923af816c2ec673cdabc24e4e2 Mon Sep 17 00:00:00 2001 From: Rajiv Harlalka Date: Sun, 25 Aug 2024 11:02:28 +0530 Subject: [PATCH] remove redundant comment Signed-off-by: Rajiv Harlalka --- core/vdbe/datetime.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/core/vdbe/datetime.rs b/core/vdbe/datetime.rs index b0bebae01..8f9c91a2b 100644 --- a/core/vdbe/datetime.rs +++ b/core/vdbe/datetime.rs @@ -100,7 +100,6 @@ pub fn exec_unixepoch(time_value: &OwnedValue) -> Result { Some(dt) => Ok(get_unixepoch_from_naive_datetime(dt)), None => Ok(String::new()), } - // Ok((Utc::now().timestamp()).to_string()) } fn get_unixepoch_from_naive_datetime(value: NaiveDateTime) -> String {