ref: 65a6439638a18e4317e144a0117db7604a2f2940
dir: /refstore/files/batch_abort.go/
package files
import "errors"
func (batch *Batch) Abort() error {
if batch.closed {
return errors.New("refstore/files: batch already closed")
}
batch.closed = true
return nil
}