fix: remove useless initialization during catalog construction

This commit is contained in:
2025-09-30 07:38:42 +02:00
parent 6f77463038
commit ed40d87e2f

View File

@@ -8,7 +8,6 @@ pub struct O {
impl O { impl O {
pub fn new(path: &str) -> Self { pub fn new(path: &str) -> Self {
sqlite::init::db(path::Path::new(path));
Self { Self {
path: String::from(path), path: String::from(path),
..O::default() ..O::default()