From 198480a9c52f83f137b06fbbf265e385a0e1646d Mon Sep 17 00:00:00 2001 From: Valdemar Grange Date: Thu, 11 Jan 2024 05:52:35 +0100 Subject: [PATCH] removed confusing comment --- .../scala/gql/server/interpreter/QueryInterpreter.scala | 8 -------- 1 file changed, 8 deletions(-) diff --git a/modules/server/src/main/scala/gql/server/interpreter/QueryInterpreter.scala b/modules/server/src/main/scala/gql/server/interpreter/QueryInterpreter.scala index 4431e07ee..90ab14ef6 100644 --- a/modules/server/src/main/scala/gql/server/interpreter/QueryInterpreter.scala +++ b/modules/server/src/main/scala/gql/server/interpreter/QueryInterpreter.scala @@ -67,14 +67,6 @@ object QueryInterpreter { def interpretAll(inputs: NonEmptyList[Input[F, ?]]): F[Results] = { /* We perform an alpha renaming for every input to ensure that every node is distinct - * Every object that the SubqueryInterpreter passes a NodeId to, - * translates that NodeId to its proper alpha-renamed id. - * - * For instance if SubqueryInterpreter_3 invokes an operation that regards NodeId 5 in partition 3, - * then that NodeId must be translated to (3, 5). - * - * Every structure foreign to the SubqueryInterpreter, such as the plan, must record nodes as alpha renamed. - * For all structures below, this occurs after construction. */ val indexed = inputs.mapWithIndex { case (input, i) => input.copy(continuation = AlphaRenaming.alphaContinuation(i, input.continuation).value)