diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2018-03-01 19:14:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-01 19:14:48 +0100 |
commit | d8d17e72525d359044192b998b11926a4eecc2c4 (patch) | |
tree | d9607299f340ba352b0753679d2e5b1b0ce457ab /storage | |
parent | 4397264e391b45a8eac147cc7373189d55c640cc (diff) | |
parent | e850aea5005fdb2a74d7dcd3267dac4a3612df8a (diff) | |
download | go-git-d8d17e72525d359044192b998b11926a4eecc2c4.tar.gz |
Merge pull request #766 from mvdan/patches
Unused params, unused code, make Go tip's vet happy
Diffstat (limited to 'storage')
-rw-r--r-- | storage/filesystem/internal/dotgit/dotgit.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/storage/filesystem/internal/dotgit/dotgit.go b/storage/filesystem/internal/dotgit/dotgit.go index fac7aec..027ef83 100644 --- a/storage/filesystem/internal/dotgit/dotgit.go +++ b/storage/filesystem/internal/dotgit/dotgit.go @@ -798,5 +798,3 @@ func isNum(b byte) bool { func isHexAlpha(b byte) bool { return b >= 'a' && b <= 'f' || b >= 'A' && b <= 'F' } - -type refCache map[plumbing.ReferenceName]*plumbing.Reference |