From 3ff0915c78980551785f047673a17e0c0dc77afd Mon Sep 17 00:00:00 2001 From: Wesley Robert Maffly-Kipp Date: Fri, 17 May 2024 10:41:16 -0700 Subject: [PATCH] removing unnecessary change --- packages/go/dawgs/graph/node.go | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/packages/go/dawgs/graph/node.go b/packages/go/dawgs/graph/node.go index 4577ac1f4d..240d1ee849 100644 --- a/packages/go/dawgs/graph/node.go +++ b/packages/go/dawgs/graph/node.go @@ -18,13 +18,11 @@ package graph import ( "encoding/json" - "fmt" - "math" - "sync" - "github.com/RoaringBitmap/roaring" "github.com/RoaringBitmap/roaring/roaring64" "github.com/specterops/bloodhound/dawgs/util/size" + "math" + "sync" ) const ( @@ -185,7 +183,6 @@ func (s NodeSet) KindSet() NodeKindSet { // Contains returns true if the ID of the given Node is stored within this NodeSet. func (s NodeSet) Contains(node *Node) bool { - fmt.Printf("THIS IS THE NODE %+v", node) return s.ContainsID(node.ID) }