aboutsummaryrefslogtreecommitdiff
path: root/object
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-03-30 15:33:32 +0000
committerGravatar Runxi Yu2026-03-30 15:33:32 +0000
commit4c2629a2601e432e4920034d5a9fd581d1e8014d (patch)
treebe25fa5d17b8fd587d681d8e3d8fceff23347b06 /object
parentcmd/index-pack: Remove (diff)
signatureNo signature
object/store: Quarantine should just embed Reader
Diffstat (limited to 'object')
-rw-r--r--object/store/quarantine.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/object/store/quarantine.go b/object/store/quarantine.go
index 1908ab9b..7f538f43 100644
--- a/object/store/quarantine.go
+++ b/object/store/quarantine.go
@@ -3,7 +3,7 @@ package objectstore
// Quarantine is one quarantined write. It is intended to be embedded.
type Quarantine interface {
// Reader returns the objects written into this quarantine.
- Reader() Reader
+ Reader
// Promote publishes quarantined writes into their final destination.
Promote() error