From 1fb6fcb447aeb75fa4c68c841b9b399f57c1e177 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Fri, 31 Jul 2026 22:55:53 +0200 Subject: [PATCH] Remove the unused CtxSnapshot scope reconstruction --- node-graph/libraries/core-types/src/context.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/node-graph/libraries/core-types/src/context.rs b/node-graph/libraries/core-types/src/context.rs index c150422710..7e09647072 100644 --- a/node-graph/libraries/core-types/src/context.rs +++ b/node-graph/libraries/core-types/src/context.rs @@ -1034,10 +1034,6 @@ impl CtxSnapshot { pub fn generations(&self) -> &[(SourceId, u64)] { &self.generations } - - pub fn scope<'s>(&'s self, arena: &'s Arena) -> EvalScope<'s> { - EvalScope::new(self.real_time, self.animation_time, self.pointer_position, &self.generations, arena) - } } impl ExtractFootprint for CtxSnapshot {