From a85ea70cee613c6bd2dd7c8029f1f0dc9334d96e Mon Sep 17 00:00:00 2001 From: Revone Date: Sat, 4 Nov 2023 21:31:15 +0800 Subject: [PATCH] [pkg] v1.41.9 published --- src/data-structures/graph/abstract-graph.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/data-structures/graph/abstract-graph.ts b/src/data-structures/graph/abstract-graph.ts index 044a127..3147c5f 100644 --- a/src/data-structures/graph/abstract-graph.ts +++ b/src/data-structures/graph/abstract-graph.ts @@ -10,7 +10,6 @@ import {PriorityQueue} from '../priority-queue'; import type {DijkstraResult, VertexKey} from '../../types'; import {IGraph} from '../../interfaces'; import {Queue} from '../queue'; -import * as console from "console"; export abstract class AbstractVertex { key: VertexKey; @@ -255,7 +254,6 @@ export abstract class AbstractGraph< } } } - console.log('999999', JSON.stringify(paths)); return paths; }