aboutsummaryrefslogtreecommitdiff
path: root/loose.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2025-11-19 08:00:00 +0800
committerGravatar Runxi Yu2025-11-19 08:00:00 +0800
commit962a428cf95ef8776296bb83eabc28537beda3dd (patch)
treecef1189e25ed12b8d4ec473949374658aa2e53ac /loose.go
parentProbably should name the custom packages specially (diff)
signatureNo signature
Switch back to internal zlib for loose objects too
Still marginally less overhead due to pooling
Diffstat (limited to 'loose.go')
-rw-r--r--loose.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/loose.go b/loose.go
index 9ed14f2e..86f67890 100644
--- a/loose.go
+++ b/loose.go
@@ -2,7 +2,6 @@ package furgit
import (
"bytes"
- "compress/zlib"
"fmt"
"io"
"os"
@@ -10,6 +9,7 @@ import (
"strconv"
"git.sr.ht/~runxiyu/furgit/internal/bufpool"
+ "git.sr.ht/~runxiyu/furgit/internal/zlib"
"git.sr.ht/~runxiyu/furgit/internal/zlibx"
)