check: remove dead code

This commit is contained in:
Michael Eischer 2022-04-30 20:29:11 +02:00
parent 0df022fa6d
commit 5e0f1c3cef
1 changed files with 0 additions and 8 deletions

View File

@ -229,18 +229,10 @@ func (c *Checker) Packs(ctx context.Context, errChan chan<- error) {
// Error is an error that occurred while checking a repository.
type Error struct {
TreeID restic.ID
BlobID restic.ID
Err error
}
func (e Error) Error() string {
if !e.BlobID.IsNull() && !e.TreeID.IsNull() {
msg := "tree " + e.TreeID.Str()
msg += ", blob " + e.BlobID.Str()
msg += ": " + e.Err.Error()
return msg
}
if !e.TreeID.IsNull() {
return "tree " + e.TreeID.String() + ": " + e.Err.Error()
}