aboutsummaryrefslogtreecommitdiff
path: root/refstore/files/transaction_commit.go
diff options
context:
space:
mode:
Diffstat (limited to 'refstore/files/transaction_commit.go')
-rw-r--r--refstore/files/transaction_commit.go12
1 files changed, 0 insertions, 12 deletions
diff --git a/refstore/files/transaction_commit.go b/refstore/files/transaction_commit.go
deleted file mode 100644
index 76bcb195..00000000
--- a/refstore/files/transaction_commit.go
+++ /dev/null
@@ -1,12 +0,0 @@
-package files
-
-func (tx *Transaction) Commit() error {
- executor := &refUpdateExecutor{store: tx.store}
-
- prepared, err := executor.prepareUpdates(tx.ops)
- if err != nil {
- return err
- }
-
- return executor.commitPreparedUpdates(prepared)
-}