aboutsummaryrefslogtreecommitdiff
path: root/format/packfile
diff options
context:
space:
mode:
Diffstat (limited to 'format/packfile')
-rw-r--r--format/packfile/ingest/drain.go2
-rw-r--r--format/packfile/ingest/entry.go2
-rw-r--r--format/packfile/ingest/ingest_test.go2
-rw-r--r--format/packfile/ingest/record_content.go2
-rw-r--r--format/packfile/ingest/record_delta.go2
-rw-r--r--format/packfile/ingest/record_resolve.go2
6 files changed, 6 insertions, 6 deletions
diff --git a/format/packfile/ingest/drain.go b/format/packfile/ingest/drain.go
index ed6ec821..aa96db8a 100644
--- a/format/packfile/ingest/drain.go
+++ b/format/packfile/ingest/drain.go
@@ -4,11 +4,11 @@ import (
"fmt"
"io"
+ packfmt "codeberg.org/lindenii/furgit/format/packfile"
"codeberg.org/lindenii/furgit/internal/compress/zlib"
objectheader "codeberg.org/lindenii/furgit/object/header"
objectid "codeberg.org/lindenii/furgit/object/id"
objecttype "codeberg.org/lindenii/furgit/object/type"
- packfmt "codeberg.org/lindenii/furgit/format/packfile"
)
// drainEntryPayload inflates one entry payload from stream and returns
diff --git a/format/packfile/ingest/entry.go b/format/packfile/ingest/entry.go
index 4e2cab55..50fbe728 100644
--- a/format/packfile/ingest/entry.go
+++ b/format/packfile/ingest/entry.go
@@ -3,8 +3,8 @@ package ingest
import (
"fmt"
- objecttype "codeberg.org/lindenii/furgit/object/type"
packfmt "codeberg.org/lindenii/furgit/format/packfile"
+ objecttype "codeberg.org/lindenii/furgit/object/type"
)
// scanOneEntry scans one pack entry from stream and appends one record.
diff --git a/format/packfile/ingest/ingest_test.go b/format/packfile/ingest/ingest_test.go
index fb50d241..c9661762 100644
--- a/format/packfile/ingest/ingest_test.go
+++ b/format/packfile/ingest/ingest_test.go
@@ -11,9 +11,9 @@ import (
"strings"
"testing"
+ "codeberg.org/lindenii/furgit/format/packfile/ingest"
"codeberg.org/lindenii/furgit/internal/testgit"
objectid "codeberg.org/lindenii/furgit/object/id"
- "codeberg.org/lindenii/furgit/format/packfile/ingest"
)
type noExtraReadReader struct {
diff --git a/format/packfile/ingest/record_content.go b/format/packfile/ingest/record_content.go
index 47f5321f..4f8787ea 100644
--- a/format/packfile/ingest/record_content.go
+++ b/format/packfile/ingest/record_content.go
@@ -3,8 +3,8 @@ package ingest
import (
"fmt"
- objecttype "codeberg.org/lindenii/furgit/object/type"
packfmt "codeberg.org/lindenii/furgit/format/packfile"
+ objecttype "codeberg.org/lindenii/furgit/object/type"
)
// readBaseRecordContent reads canonical base content for one non-delta record.
diff --git a/format/packfile/ingest/record_delta.go b/format/packfile/ingest/record_delta.go
index 31fb4b62..bc40367f 100644
--- a/format/packfile/ingest/record_delta.go
+++ b/format/packfile/ingest/record_delta.go
@@ -3,8 +3,8 @@ package ingest
import (
"fmt"
- objecttype "codeberg.org/lindenii/furgit/object/type"
deltaapply "codeberg.org/lindenii/furgit/format/packfile/delta/apply"
+ objecttype "codeberg.org/lindenii/furgit/object/type"
)
// applyDeltaRecord applies one delta record onto base content.
diff --git a/format/packfile/ingest/record_resolve.go b/format/packfile/ingest/record_resolve.go
index 1ccc427b..fc5b9dca 100644
--- a/format/packfile/ingest/record_resolve.go
+++ b/format/packfile/ingest/record_resolve.go
@@ -3,8 +3,8 @@ package ingest
import (
"fmt"
- objecttype "codeberg.org/lindenii/furgit/object/type"
packfmt "codeberg.org/lindenii/furgit/format/packfile"
+ objecttype "codeberg.org/lindenii/furgit/object/type"
)
// resolveRecord resolves one record and returns canonical type/content.