aboutsummaryrefslogtreecommitdiff
path: root/commitquery/node.go
diff options
context:
space:
mode:
Diffstat (limited to 'commitquery/node.go')
-rw-r--r--commitquery/node.go25
1 files changed, 0 insertions, 25 deletions
diff --git a/commitquery/node.go b/commitquery/node.go
deleted file mode 100644
index 7432a719..00000000
--- a/commitquery/node.go
+++ /dev/null
@@ -1,25 +0,0 @@
-package commitquery
-
-import (
- commitgraphread "codeberg.org/lindenii/furgit/format/commitgraph/read"
- objectid "codeberg.org/lindenii/furgit/object/id"
-)
-
-// node stores one mutable commit traversal node.
-type node struct {
- id objectid.ObjectID
-
- parents []nodeIndex
-
- commitTime int64
- generation uint64
-
- hasGeneration bool
- hasGraphPos bool
- loaded bool
-
- graphPos commitgraphread.Position
- marks markBits
-
- touchedPhase uint32
-}