aboutsummaryrefslogtreecommitdiff
path: root/format/pack/ingest/progress_write.go
diff options
context:
space:
mode:
Diffstat (limited to 'format/pack/ingest/progress_write.go')
-rw-r--r--format/pack/ingest/progress_write.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/format/pack/ingest/progress_write.go b/format/pack/ingest/progress_write.go
deleted file mode 100644
index 5b9f184b..00000000
--- a/format/pack/ingest/progress_write.go
+++ /dev/null
@@ -1,11 +0,0 @@
-package ingest
-
-import "codeberg.org/lindenii/furgit/internal/utils"
-
-func writeProgressf(state *ingestState, format string, args ...any) {
- utils.BestEffortFprintf(state.opts.Progress, format, args...)
-
- if state.opts.ProgressFlush != nil {
- _ = state.opts.ProgressFlush()
- }
-}