-
Bug
-
Resolution: Not an Issue
-
P4
-
None
-
unknown
-
generic
-
generic
The following methods can be pulled out since they are not used by any other methods
302 private synchronized void writeObject(ObjectOutputStream stream)
303 throws IOException {
304 try {
305 stream.write(getEncoded());
306 } catch (CertificateEncodingException e) {
307 throw new IOException("getEncoded failed: " + e.getMessage());
308 }
309 }
310
311 private synchronized void readObject(ObjectInputStream stream)
312 throws IOException {
313 try {
314 wrappedCert = (java.security.cert.X509Certificate)
315 getFactory().generateCertificate(stream);
316 } catch (java.security.cert.CertificateException e) {
317 throw new IOException("generateCertificate failed: " + e.getMessage());
318 }
319 }
302 private synchronized void writeObject(ObjectOutputStream stream)
303 throws IOException {
304 try {
305 stream.write(getEncoded());
306 } catch (CertificateEncodingException e) {
307 throw new IOException("getEncoded failed: " + e.getMessage());
308 }
309 }
310
311 private synchronized void readObject(ObjectInputStream stream)
312 throws IOException {
313 try {
314 wrappedCert = (java.security.cert.X509Certificate)
315 getFactory().generateCertificate(stream);
316 } catch (java.security.cert.CertificateException e) {
317 throw new IOException("generateCertificate failed: " + e.getMessage());
318 }
319 }