aboutsummaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorDaniel Martí <mvdan@mvdan.cc>2018-03-01 17:03:32 +0000
committerDaniel Martí <mvdan@mvdan.cc>2018-03-01 17:12:58 +0000
commitede92fa7ff9a6c5a61245e2ebeaa4d3929a37ce8 (patch)
treee99cf26f0a460240477bb52bdae1b5ea0832c3c8 /storage
parent65886144d1e19b563c4e8854ba1cd0d532fea532 (diff)
downloadgo-git-ede92fa7ff9a6c5a61245e2ebeaa4d3929a37ce8.tar.gz
all: remove some unused code
Signed-off-by: Daniel Martí <mvdan@mvdan.cc>
Diffstat (limited to 'storage')
-rw-r--r--storage/filesystem/internal/dotgit/dotgit.go2
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