From 63d79939404679181fe28d11bcf9836dbc96eb4a Mon Sep 17 00:00:00 2001 From: MultisampledNight Date: Sun, 21 Jan 2024 21:28:35 +0100 Subject: [PATCH] chore: remove confusing comment --- crates/eval/src/kind/debug/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/eval/src/kind/debug/mod.rs b/crates/eval/src/kind/debug/mod.rs index 1f46c49..9b53ebe 100644 --- a/crates/eval/src/kind/debug/mod.rs +++ b/crates/eval/src/kind/debug/mod.rs @@ -19,7 +19,6 @@ pub struct Evaluator { impl crate::Evaluator for Evaluator { fn feed(&mut self, ir: GraphIr) { - // TODO: should add instead of replace, see note in Evaluator trait above this method self.ir = ir; self.evaluated.clear(); }