digest: remove stuttering ParseDigest function

Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
Stephen J Day 2016-12-15 14:58:54 -08:00
parent ad80b3d492
commit d5cc235c48
No known key found for this signature in database
GPG key ID: FB5F6B2905D7ECF3
3 changed files with 9 additions and 5 deletions

View file

@ -75,7 +75,7 @@ func (dst *Set) Lookup(d string) (Digest, error) {
alg Algorithm
hex string
)
dgst, err := ParseDigest(d)
dgst, err := Parse(d)
if err == ErrDigestInvalidFormat {
hex = d
searchFunc = func(i int) bool {