aboutsummaryrefslogtreecommitdiffstats
path: root/utils-test
diff options
context:
space:
mode:
Diffstat (limited to 'utils-test')
-rw-r--r--utils-test/pom.xml1
-rw-r--r--utils-test/src/main/java/org/onap/policy/common/utils/security/SelfSignedKeyStore.java2
2 files changed, 0 insertions, 3 deletions
diff --git a/utils-test/pom.xml b/utils-test/pom.xml
index d5341812..6338cc08 100644
--- a/utils-test/pom.xml
+++ b/utils-test/pom.xml
@@ -42,7 +42,6 @@
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-fips</artifactId>
- <scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
diff --git a/utils-test/src/main/java/org/onap/policy/common/utils/security/SelfSignedKeyStore.java b/utils-test/src/main/java/org/onap/policy/common/utils/security/SelfSignedKeyStore.java
index 1cc16263..9fa1067d 100644
--- a/utils-test/src/main/java/org/onap/policy/common/utils/security/SelfSignedKeyStore.java
+++ b/utils-test/src/main/java/org/onap/policy/common/utils/security/SelfSignedKeyStore.java
@@ -75,7 +75,6 @@ public class SelfSignedKeyStore {
* Generates the keystore, if it does not exist or if it's more than a few hours old.
*
* @throws IOException if an I/O error occurs
- * @throws InterruptedException if an interrupt occurs
*/
public SelfSignedKeyStore() throws IOException {
this(RELATIVE_PATH);
@@ -87,7 +86,6 @@ public class SelfSignedKeyStore {
* @param relativePath path to the keystore, relative to the "user.dir" system
* property
* @throws IOException if an I/O error occurs
- * @throws InterruptedException if an interrupt occurs
*/
public SelfSignedKeyStore(String relativePath) throws IOException {
keystoreName = System.getProperty("user.dir") + "/" + relativePath;