Use switch, not ifs.

This commit is contained in:
Brad Fitzpatrick 2011-02-03 08:28:47 -08:00
parent d81d6211d5
commit 4df8d2ba04
1 changed files with 6 additions and 5 deletions

View File

@ -45,14 +45,15 @@ func (ds *diskStorage) Remove(partition string, blobs []*blobref.BlobRef) os.Err
for _, blob := range blobs {
fileName := PartitionBlobFileName(partition, blob)
err := os.Remove(fileName)
if err == nil {
continue;
}
if errorIsNoEnt(err) {
switch {
case err == nil:
continue
case errorIsNoEnt(err):
log.Printf("Deleting already-deleted file; harmless.")
continue
default:
return err
}
return err
}
return nil
}