fix error on stop words fst

This commit is contained in:
Quentin de Quelen 2020-01-18 16:11:40 +01:00 committed by qdequele
parent 38d57d213f
commit 6f534540a6
No known key found for this signature in database
GPG key ID: B3F0A000EBF11745
3 changed files with 4 additions and 8 deletions

View file

@ -197,8 +197,6 @@ pub fn apply_stop_words_update(
)?;
}
main_store.put_stop_words(writer, stop_words)?;
Ok(must_reindex)
}
@ -341,7 +339,6 @@ pub fn apply_synonyms_update(
.unwrap();
main_store.put_synonyms_fst(writer, &synonyms_set)?;
main_store.put_synonyms(writer, synonyms)?;
Ok(())
}