summaryrefslogtreecommitdiffstats
path: root/base/util/src/netscape/security/x509/RevokedCertImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'base/util/src/netscape/security/x509/RevokedCertImpl.java')
-rwxr-xr-xbase/util/src/netscape/security/x509/RevokedCertImpl.java6
1 files changed, 2 insertions, 4 deletions
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);
}