This is an automated email from the ASF dual-hosted git repository. colegreer pushed a commit to branch graph-binary-4-JS-HTTP in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit 51673db9948646b833cb12eb7cd4447bd838ea65 Author: Kirill Stepanishin <[email protected]> AuthorDate: Fri Mar 6 10:57:04 2026 -0800 Comment out deprecated method causing conflicts --- .../gremlin-javascript/lib/structure/graph.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/structure/graph.ts b/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/structure/graph.ts index e00a88b036..acb6e1b5d6 100644 --- a/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/structure/graph.ts +++ b/gremlin-javascript/src/main/javascript/gremlin-javascript/lib/structure/graph.ts @@ -21,21 +21,21 @@ * @author Jorge Bay Gondra */ -import { GraphTraversalSource } from '../process/graph-traversal.js'; -import { TraversalStrategies } from '../process/traversal-strategy.js'; +// import { GraphTraversalSource } from '../process/graph-traversal.js'; +// import { TraversalStrategies } from '../process/traversal-strategy.js'; /** * An "empty" graph object to server only as a reference. */ export class Graph { - /** - * Returns the graph traversal source. - * @param TraversalSourceClass The constructor to use for the {@code GraphTraversalSource} instance. - * @deprecated As of release 3.3.5, replaced by the traversal() anonymous function. - */ - traversal(TraversalSourceClass: typeof GraphTraversalSource = GraphTraversalSource): GraphTraversalSource { - return new TraversalSourceClass(this, new TraversalStrategies()); - } + // /** + // * Returns the graph traversal source. + // * @param TraversalSourceClass The constructor to use for the {@code GraphTraversalSource} instance. + // * @deprecated As of release 3.3.5, replaced by the traversal() anonymous function. + // */ + // traversal(TraversalSourceClass: typeof GraphTraversalSource = GraphTraversalSource): GraphTraversalSource { + // return new TraversalSourceClass(this, new TraversalStrategies()); + // } toString() { return 'graph[]';
