aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem/internal/dotgit/dotgit.go
diff options
context:
space:
mode:
authorferhat elmas <elmas.ferhat@gmail.com>2017-12-18 02:08:58 +0100
committerferhat elmas <elmas.ferhat@gmail.com>2017-12-18 02:09:00 +0100
commit9a9f35269c31e880bc88486a5bcc13f592eace6a (patch)
tree91c31e3e9978143f19087591c453a5d4f6781365 /storage/filesystem/internal/dotgit/dotgit.go
parent757a26038e5404f94523ba07d017d1b38bcbf6dd (diff)
downloadgo-git-9a9f35269c31e880bc88486a5bcc13f592eace6a.tar.gz
*: simplication
- no unnecessary err/bool check, uses them directly Signed-off-by: ferhat elmas <elmas.ferhat@gmail.com>
Diffstat (limited to 'storage/filesystem/internal/dotgit/dotgit.go')
-rw-r--r--storage/filesystem/internal/dotgit/dotgit.go6
1 files changed, 1 insertions, 5 deletions
diff --git a/storage/filesystem/internal/dotgit/dotgit.go b/storage/filesystem/internal/dotgit/dotgit.go
index ebc6bad..d644810 100644
--- a/storage/filesystem/internal/dotgit/dotgit.go
+++ b/storage/filesystem/internal/dotgit/dotgit.go
@@ -212,11 +212,7 @@ func (d *DotGit) DeleteOldObjectPackAndIndex(hash plumbing.Hash, t time.Time) er
if err != nil {
return err
}
- err = d.fs.Remove(d.objectPackPath(hash, `idx`))
- if err != nil {
- return err
- }
- return nil
+ return d.fs.Remove(d.objectPackPath(hash, `idx`))
}
// NewObject return a writer for a new object file.