1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-03-09 00:00:02 +01:00

Remove unused global variable

This commit is contained in:
Alexander Neumann 2015-05-02 16:39:24 +02:00
parent 71f3fb2dac
commit d66780a45d

View file

@ -20,9 +20,8 @@ import (
)
const (
maxConcurrentBlobs = 32
maxConcurrency = 10
maxConcurrencyPreload = 20
maxConcurrentBlobs = 32
maxConcurrency = 10
)
var archiverAbortOnAllErrors = func(str string, fi os.FileInfo, err error) error { return err }