forked from TrueCloudLab/restic
internal/restic: Use errors.New when no formatting is needed
This commit is contained in:
parent
ba44666704
commit
feb790f497
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ func SaveTree(ctx context.Context, r BlobSaver, t *Tree) (ID, error) {
|
|||
return id, err
|
||||
}
|
||||
|
||||
var ErrTreeNotOrdered = errors.Errorf("nodes are not ordered or duplicate")
|
||||
var ErrTreeNotOrdered = errors.New("nodes are not ordered or duplicate")
|
||||
|
||||
type TreeJSONBuilder struct {
|
||||
buf bytes.Buffer
|
||||
|
|
Loading…
Reference in a new issue