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
+1 -1
View File
@@ -76,7 +76,7 @@ pub trait TableSchema: Send + Sync {
// as the update itself is an unchangeable fact that will never go back
// due to CRDT logic. Typically errors in propagation of info should be logged
// to stderr.
fn updated(&self, old: Option<Self::E>, new: Option<Self::E>);
fn updated(&self, _old: Option<Self::E>, _new: Option<Self::E>) {}
fn matches_filter(entry: &Self::E, filter: &Self::Filter) -> bool;
}