aboutsummaryrefslogtreecommitdiff
path: root/objectstore/packed/delta_chain.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-25 14:30:31 +0000
committerGravatar Runxi Yu2026-03-25 14:30:31 +0000
commitbfa0a3f5f18b752a6ebd3d5b37411c6871f7bb17 (patch)
tree8ee2479273e2b34d284c30703c2be48efe197556 /objectstore/packed/delta_chain.go
parent*: Resort import order (diff)
signatureNo signature
*: objectstore -> object/store
Diffstat (limited to 'objectstore/packed/delta_chain.go')
-rw-r--r--objectstore/packed/delta_chain.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/objectstore/packed/delta_chain.go b/objectstore/packed/delta_chain.go
deleted file mode 100644
index 372e89cd..00000000
--- a/objectstore/packed/delta_chain.go
+++ /dev/null
@@ -1,13 +0,0 @@
-package packed
-
-import objecttype "codeberg.org/lindenii/furgit/object/type"
-
-// deltaChain describes how to reconstruct one requested object.
-type deltaChain struct {
- // baseLoc points to the innermost base object.
- baseLoc location
- // baseType is the canonical object type resolved from baseLoc.
- baseType objecttype.Type
- // deltas contains delta objects from target down toward base.
- deltas []deltaNode
-}