simplified prefix removal, removed unnecessary if-else statements

This commit is contained in:
Alexandr Bruyako
2019-06-30 23:34:47 +03:00
parent 16eeed2ad5
commit 02014be76c
4 changed files with 4 additions and 16 deletions

View File

@@ -214,9 +214,5 @@ func (c *Cache) Has(h restic.Handle) bool {
}
_, err := fs.Stat(c.filename(h))
if err == nil {
return true
}
return false
return err == nil
}