Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4489933

Unused method exists in com/sun/security/cert/internal/x509/X509V1CertImpl.java

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Not an Issue
    • Icon: P4 P4
    • None
    • unknown
    • security-libs

      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 }

            smalkanisunw Seema Malkani (Inactive)
            skesunw Stuart Ke (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: