From 1b5443aabd74286772758e142ef4a1020ef7fc23 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Thu, 18 Sep 2025 14:26:41 +0200 Subject: [PATCH] Cleanup --- node-graph/graph-craft/src/proto.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/node-graph/graph-craft/src/proto.rs b/node-graph/graph-craft/src/proto.rs index 3b4aa69ec0..6b0fb42c09 100644 --- a/node-graph/graph-craft/src/proto.rs +++ b/node-graph/graph-craft/src/proto.rs @@ -415,13 +415,11 @@ impl ProtoNetwork { if self.nodes[node_index].1.identifier == ProtoNodeIdentifier::new("graphene_core::ops::IdentityNode") { // TODO: make cleaner let previous_id = new_order.id_mapping[inputs[0].0 as usize]; - let previous = new_order.vec[previous_id].clone(); new_order.id_mapping.push(previous_id); // Replicate the results from the input node results.push(results[inputs[0].0 as usize].clone()); // new_order.push_node(previous.1, Some(node_index))?; return Ok(()); - // return self.find_context_dependencies(inputs[0], new_order, results); } // Compute the dependencies for each branch and combine all of them