Skip to content

Commit

Permalink
removing unnecessary change
Browse files Browse the repository at this point in the history
  • Loading branch information
maffkipp committed May 17, 2024
1 parent 08e6dda commit 3ff0915
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/go/dawgs/graph/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down Expand Up @@ -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)
}

Expand Down

0 comments on commit 3ff0915

Please sign in to comment.