Remove useless function
This commit is contained in:
parent
48928d2d70
commit
0c0a02ad03
1 changed files with 0 additions and 10 deletions
|
@ -116,16 +116,6 @@ impl<T: CounterSchema> TableSchema for CounterTable<T> {
|
||||||
type E = CounterEntry<T>;
|
type E = CounterEntry<T>;
|
||||||
type Filter = (DeletedFilter, Vec<Uuid>);
|
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 {
|
fn matches_filter(entry: &Self::E, filter: &Self::Filter) -> bool {
|
||||||
if filter.0 == DeletedFilter::Any {
|
if filter.0 == DeletedFilter::Any {
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue