diff options
author | Daniel Martí <mvdan@mvdan.cc> | 2018-03-01 17:03:32 +0000 |
---|---|---|
committer | Daniel Martí <mvdan@mvdan.cc> | 2018-03-01 17:12:58 +0000 |
commit | ede92fa7ff9a6c5a61245e2ebeaa4d3929a37ce8 (patch) | |
tree | e99cf26f0a460240477bb52bdae1b5ea0832c3c8 /storage/filesystem/internal/dotgit | |
parent | 65886144d1e19b563c4e8854ba1cd0d532fea532 (diff) | |
download | go-git-ede92fa7ff9a6c5a61245e2ebeaa4d3929a37ce8.tar.gz |
all: remove some unused code
Signed-off-by: Daniel Martí <mvdan@mvdan.cc>
Diffstat (limited to 'storage/filesystem/internal/dotgit')
-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 |