aboutsummaryrefslogtreecommitdiff
path: root/object/storer/packed/delta_chain.go
diff options
context:
space:
mode:
Diffstat (limited to 'object/storer/packed/delta_chain.go')
-rw-r--r--object/storer/packed/delta_chain.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/object/storer/packed/delta_chain.go b/object/storer/packed/delta_chain.go
deleted file mode 100644
index 372e89cd..00000000
--- a/object/storer/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
-}