aboutsummaryrefslogtreecommitdiff
path: root/refs.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2026-01-27 19:05:00 +0100
committerGravatar Runxi Yu2026-01-27 19:09:10 +0100
commit6002485582541df9dff3e2c782a014564e22ed07 (patch)
tree0eeb6398044053859c2d80b7b8bc2e13d7fc01ac /refs.go
parentTODO: HashAlgorithm interface? compression agility? (diff)
signatureNo signature
hash: Use a hashAlgorithmDetails struct for single source of truth v0.1.2
hashAlgorithm's are assumed to be valid; methods on invalid hashAlgorithms will panic from out-of-bounds read when it's not found in hashAlgorithmTable and that's expected and intended.
Diffstat (limited to 'refs.go')
-rw-r--r--refs.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/refs.go b/refs.go
index 372d31fd..6efdf5ec 100644
--- a/refs.go
+++ b/refs.go
@@ -70,7 +70,7 @@ func (repo *Repository) resolvePackedRef(refname string) (Ref, error) {
}
sp := bytes.IndexByte(line, ' ')
- if sp != repo.hashAlgo.size()*2 {
+ if sp != repo.hashAlgo.Size()*2 {
continue
}
@@ -428,7 +428,7 @@ func (repo *Repository) ListRefs(pattern string) ([]Ref, error) {
}
sp := bytes.IndexByte(line, ' ')
- if sp != repo.hashAlgo.size()*2 {
+ if sp != repo.hashAlgo.Size()*2 {
lastIdx = -1
continue
}