From 699ec18de80d967dc7193791e5dadbf0f9f9fde2 Mon Sep 17 00:00:00 2001 From: ManyTheFish Date: Tue, 6 May 2025 14:39:47 +0200 Subject: [PATCH] Fix warnings --- crates/milli/src/disabled_typos_terms.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/crates/milli/src/disabled_typos_terms.rs b/crates/milli/src/disabled_typos_terms.rs index 3a0d0c0f5..7ae35f828 100644 --- a/crates/milli/src/disabled_typos_terms.rs +++ b/crates/milli/src/disabled_typos_terms.rs @@ -33,13 +33,6 @@ impl Index { Ok(()) } - - pub(crate) fn delete_disabled_typos_terms(&self, txn: &mut RwTxn<'_>) -> heed::Result<()> { - self.main - .remap_types::>() - .delete(txn, main_key::DISABLED_TYPOS_TERMS)?; - Ok(()) - } } impl DisabledTyposTerms {