1
0
mirror of https://github.com/go-acme/lego.git synced 2025-01-20 13:15:32 +02:00

Unneeded assignment

This commit is contained in:
Pauline Middelink 2016-02-26 02:52:13 +01:00
parent da7dd0f7b8
commit ec18e5ce07

View File

@ -322,7 +322,6 @@ func (c *Client) RenewCertificate(cert CertificateResource, bundle bool) (Certif
// Success - append the issuer cert to the issued cert.
issuerCert = pemEncode(derCertificateBytes(issuerCert))
issuedCert = append(issuedCert, issuerCert...)
cert.Certificate = issuedCert
}
}