aboutsummaryrefslogtreecommitdiffstats
path: root/libraries/spongycastle/core/src/main/jdk1.1/java/security/cert/CertPathParameters.java
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/spongycastle/core/src/main/jdk1.1/java/security/cert/CertPathParameters.java')
-rw-r--r--libraries/spongycastle/core/src/main/jdk1.1/java/security/cert/CertPathParameters.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/libraries/spongycastle/core/src/main/jdk1.1/java/security/cert/CertPathParameters.java b/libraries/spongycastle/core/src/main/jdk1.1/java/security/cert/CertPathParameters.java
deleted file mode 100644
index caff291a8..000000000
--- a/libraries/spongycastle/core/src/main/jdk1.1/java/security/cert/CertPathParameters.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package java.security.cert;
-
-/**
- * A specification of certification path algorithm parameters. The purpose
- * of this interface is to group (and provide type safety for) all CertPath
- * parameter specifications. All <code>CertPath</code> parameter specifications must
- * implement this interface.
- **/
-public interface CertPathParameters extends Cloneable
-{
- /**
- * Makes a copy of this <code>CertPathParameters</code>. Changes to the
- * copy will not affect the original and vice versa.
- *
- * @return a copy of this <code>CertPathParameters</code>
- **/
- public Object clone();
-}