diff options
-rw-r--r-- | src/model/index_counter.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/model/index_counter.rs b/src/model/index_counter.rs index 48f616f7..2602d5d9 100644 --- a/src/model/index_counter.rs +++ b/src/model/index_counter.rs @@ -116,16 +116,6 @@ impl<T: CounterSchema> TableSchema for CounterTable<T> { type E = CounterEntry<T>; type Filter = (DeletedFilter, Vec<Uuid>); - fn updated( - &self, - _tx: &mut db::Transaction, - _old: Option<&Self::E>, - _new: Option<&Self::E>, - ) -> db::TxOpResult<()> { - // nothing for now - Ok(()) - } - fn matches_filter(entry: &Self::E, filter: &Self::Filter) -> bool { if filter.0 == DeletedFilter::Any { return true; |