change some more comments and revert changes on TableSchema

This commit is contained in:
Trinity Pointard
2021-04-07 13:39:34 +02:00
committed by Alex Auvolat
parent 74373aebcf
commit 2812a027ea
6 changed files with 6 additions and 15 deletions
-4
View File
@@ -125,10 +125,6 @@ impl TableSchema for KeyTable {
type E = Key;
type Filter = KeyFilter;
fn updated(&self, _old: Option<Self::E>, _new: Option<Self::E>) {
// nothing to do when updated
}
fn matches_filter(entry: &Self::E, filter: &Self::Filter) -> bool {
match filter {
KeyFilter::Deleted(df) => df.apply(entry.deleted.get()),