summaryrefslogtreecommitdiffstats
path: root/base/util/src/netscape/security/x509/RevokedCertImpl.java
diff options
context:
space:
mode:
authorAbhishek Koneru <akoneru@redhat.com>2012-07-11 14:54:32 -0400
committerEndi Sukma Dewata <edewata@redhat.com>2012-07-18 10:41:46 -0500
commit6cd64781a7cda192bc2b0a555974037fd16cc2c5 (patch)
tree1145e67bb8b736e47c11dd3485d635e53b1931eb /base/util/src/netscape/security/x509/RevokedCertImpl.java
parent70e45db3cfcf01b3b36fe619b03cf604e6666c91 (diff)
downloadpki-6cd64781a7cda192bc2b0a555974037fd16cc2c5.tar.gz
pki-6cd64781a7cda192bc2b0a555974037fd16cc2c5.tar.xz
pki-6cd64781a7cda192bc2b0a555974037fd16cc2c5.zip
Misc Fixes Remaining part of the code.
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);
}