diff options
author | Trinity Pointard <trinity.pointard@gmail.com> | 2021-04-07 13:39:34 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-04-27 16:49:07 +0200 |
commit | 2812a027ea5a8ac0de22aedce9552c2420c07019 (patch) | |
tree | 6ab505b1f5e5d43907c77fcb324df3f9718239ac /src/table/schema.rs | |
parent | 74373aebcfdfcf5c03e4fb6510d8dd664a0b9b88 (diff) | |
download | garage-2812a027ea5a8ac0de22aedce9552c2420c07019.tar.gz garage-2812a027ea5a8ac0de22aedce9552c2420c07019.zip |
change some more comments and revert changes on TableSchema
Diffstat (limited to 'src/table/schema.rs')
-rw-r--r-- | src/table/schema.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/schema.rs b/src/table/schema.rs index c17ccc15..13517271 100644 --- a/src/table/schema.rs +++ b/src/table/schema.rs @@ -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; } |