From ed40d87e2f845aa758c5296a71687e34e6f42b9c Mon Sep 17 00:00:00 2001 From: davidemazzocchi Date: Tue, 30 Sep 2025 07:38:42 +0200 Subject: [PATCH] fix: remove useless initialization during catalog construction --- 01.workspace/heave/src/str/catalog.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/01.workspace/heave/src/str/catalog.rs b/01.workspace/heave/src/str/catalog.rs index 6b2a6af..7a72d16 100644 --- a/01.workspace/heave/src/str/catalog.rs +++ b/01.workspace/heave/src/str/catalog.rs @@ -8,7 +8,6 @@ pub struct O { impl O { pub fn new(path: &str) -> Self { - sqlite::init::db(path::Path::new(path)); Self { path: String::from(path), ..O::default()