From 26439b4debc538487dabf5623c3c20b39fca1898 Mon Sep 17 00:00:00 2001 From: Andrew Ayer Date: Fri, 30 May 2025 17:08:05 -0400 Subject: [PATCH] Remove unused code --- identifiers.go | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/identifiers.go b/identifiers.go index a1041ab..dd73a45 100644 --- a/identifiers.go +++ b/identifiers.go @@ -262,21 +262,6 @@ func (ids *Identifiers) AddIPAddress(value net.IP) { ids.appendIPAddress(value) } -func (ids *Identifiers) dnsNamesString(sep string) string { - return strings.Join(ids.DNSNames, sep) -} - -func (ids *Identifiers) ipAddrsString(sep string) string { - str := "" - for _, ipAddr := range ids.IPAddrs { - if str != "" { - str += sep - } - str += ipAddr.String() - } - return str -} - func (cert *CertInfo) ParseIdentifiers() (*Identifiers, error) { ids := NewIdentifiers()