From 1a37d6047e0db50d6809f716fc3035af1cb603fa Mon Sep 17 00:00:00 2001 From: Adam Young Date: Wed, 7 Dec 2011 11:02:06 -0500 Subject: Removal of unused private methods These methods are uncallable. There might be some discussion about the private default constructores. The Rules of Java are different from C++: If there is any constructor defined, all the other defaults befome uncallable. Thus, the private default constructors are not needed. https://bugzilla.redhat.com/show_bug.cgi?id=728303 Conflicts: pki/base/ca/src/com/netscape/ca/CRLIssuingPoint.java --- pki/base/util/src/com/netscape/cmsutil/ocsp/Signature.java | 5 ----- 1 file changed, 5 deletions(-) (limited to 'pki/base/util/src/com/netscape/cmsutil/ocsp/Signature.java') diff --git a/pki/base/util/src/com/netscape/cmsutil/ocsp/Signature.java b/pki/base/util/src/com/netscape/cmsutil/ocsp/Signature.java index 2810182e..d670dfe2 100644 --- a/pki/base/util/src/com/netscape/cmsutil/ocsp/Signature.java +++ b/pki/base/util/src/com/netscape/cmsutil/ocsp/Signature.java @@ -81,11 +81,6 @@ public class Signature implements ASN1Value return (Certificate) certs.elementAt(index); } - /////////////////////////////////////////////////////////////////////// - // constructors - /////////////////////////////////////////////////////////////////////// - private Signature() { } - public Signature(AlgorithmIdentifier signatureAlgorithm, BIT_STRING signature, SEQUENCE certs) { -- cgit