submitct: apply gofmt

This commit is contained in:
Andrew Ayer 2017-02-05 10:09:42 -08:00
parent 732a660767
commit 8b9c08b984
1 changed files with 4 additions and 4 deletions

View File

@ -80,14 +80,14 @@ func (c Chain) GetRawCerts() [][]byte {
}
type CertificateBunch struct {
byFingerprint map[[32]byte]*Certificate
bySubject map[[32]byte]*Certificate
byFingerprint map[[32]byte]*Certificate
bySubject map[[32]byte]*Certificate
}
func MakeCertificateBunch() CertificateBunch {
return CertificateBunch{
byFingerprint: make(map[[32]byte]*Certificate),
bySubject: make(map[[32]byte]*Certificate),
byFingerprint: make(map[[32]byte]*Certificate),
bySubject: make(map[[32]byte]*Certificate),
}
}