aboutsummaryrefslogtreecommitdiff
path: root/refstore/files/batch_begin.go
diff options
context:
space:
mode:
Diffstat (limited to 'refstore/files/batch_begin.go')
-rw-r--r--refstore/files/batch_begin.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/refstore/files/batch_begin.go b/refstore/files/batch_begin.go
deleted file mode 100644
index 06459b2c..00000000
--- a/refstore/files/batch_begin.go
+++ /dev/null
@@ -1,13 +0,0 @@
-package files
-
-import "codeberg.org/lindenii/furgit/refstore"
-
-// BeginBatch creates one new files batch.
-//
-//nolint:ireturn
-func (store *Store) BeginBatch() (refstore.Batch, error) {
- return &Batch{
- store: store,
- ops: make([]queuedUpdate, 0, 8),
- }, nil
-}