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
}
}