From 6cd64781a7cda192bc2b0a555974037fd16cc2c5 Mon Sep 17 00:00:00 2001 From: Abhishek Koneru Date: Wed, 11 Jul 2012 14:54:32 -0400 Subject: Misc Fixes Remaining part of the code. --- base/util/src/netscape/security/x509/RevokedCertImpl.java | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'base/util/src/netscape/security/x509/RevokedCertImpl.java') diff --git a/base/util/src/netscape/security/x509/RevokedCertImpl.java b/base/util/src/netscape/security/x509/RevokedCertImpl.java index df3bc37a8..eac11f8e3 100755 --- a/base/util/src/netscape/security/x509/RevokedCertImpl.java +++ b/base/util/src/netscape/security/x509/RevokedCertImpl.java @@ -432,8 +432,7 @@ public class RevokedCertImpl extends RevokedCertificate implements Serializable * they're parsed when they get read back. (Actually they serialize as some * type data from the serialization subsystem, then the cert data.) */ - private synchronized void writeObject(ObjectOutputStream stream) - throws CRLException, X509ExtensionException, IOException { + private void writeObject(ObjectOutputStream stream) throws CRLException, X509ExtensionException, IOException { DerOutputStream dos = new DerOutputStream(); encode(dos); dos.derEncode(stream); @@ -443,8 +442,7 @@ public class RevokedCertImpl extends RevokedCertificate implements Serializable * Serialization read ... X.509 certificates serialize as themselves, and * they're parsed when they get read back. */ - private synchronized void readObject(ObjectInputStream stream) - throws CRLException, X509ExtensionException, IOException { + private void readObject(ObjectInputStream stream) throws CRLException, X509ExtensionException, IOException { decode(stream); } -- cgit