remove del_synonyms function

This commit is contained in:
mpostma 2020-10-26 21:33:39 +01:00
parent 91363daeaa
commit 33c7c5a7e3

View File

@ -19,10 +19,6 @@ impl Synonyms {
self.synonyms.put(writer, word, bytes)
}
pub fn del_synonyms(self, writer: &mut heed::RwTxn<MainT>, word: &[u8]) -> ZResult<bool> {
self.synonyms.delete(writer, word)
}
pub fn clear(self, writer: &mut heed::RwTxn<MainT>) -> ZResult<()> {
self.synonyms.clear(writer)
}