diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-06-06 04:11:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-06 09:11:07 +0100 |
commit | f880e64b11bd03d1ebd710b34b541d5b2e044baa (patch) | |
tree | 24abc530d6210279b8bd23986aa35b8df3820b3d /rust/benches | |
parent | Some house keeping on `maybe_backfill()` functions (#15709) (diff) | |
download | synapse-f880e64b11bd03d1ebd710b34b541d5b2e044baa.tar.xz |
Stabilize support for MSC3952: Intentional mentions. (#15520)
Diffstat (limited to 'rust/benches')
-rw-r--r-- | rust/benches/evaluator.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/rust/benches/evaluator.rs b/rust/benches/evaluator.rs index 64e13f6486..c2f33258a4 100644 --- a/rust/benches/evaluator.rs +++ b/rust/benches/evaluator.rs @@ -13,8 +13,6 @@ // limitations under the License. #![feature(test)] -use std::collections::BTreeSet; - use synapse::push::{ evaluator::PushRuleEvaluator, Condition, EventMatchCondition, FilteredPushRules, JsonValue, PushRules, SimpleJsonValue, @@ -197,7 +195,6 @@ fn bench_eval_message(b: &mut Bencher) { false, false, false, - false, ); b.iter(|| eval.run(&rules, Some("bob"), Some("person"))); |