dryrun: fix outdated comments

This commit is contained in:
Michael Eischer 2023-04-07 22:13:32 +02:00
parent 4703473ec5
commit 8b5ab5b59f
1 changed files with 1 additions and 2 deletions

View File

@ -18,10 +18,9 @@ type Backend struct {
b restic.Backend
}
// statically ensure that RetryBackend implements restic.Backend.
// statically ensure that Backend implements restic.Backend.
var _ restic.Backend = &Backend{}
// New returns a new backend that saves all data in a map in memory.
func New(be restic.Backend) *Backend {
b := &Backend{b: be}
debug.Log("created new dry backend")