aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKanagaraj Manickam <kanagaraj.manickam@huawei.com>2022-04-08 04:13:09 +0000
committerGerrit Code Review <gerrit@onap.org>2022-04-08 04:13:09 +0000
commita94a9d330d17b1076d4576249348d33ff0443e6a (patch)
treef1d05badf80aac242608afd4bb98444e64abb72d
parent05f9d80976a18e7329d199acca67cc381bfbae30 (diff)
parent58a76d48f5806c89be4987727d4d7bb8cd501f32 (diff)
Merge "Removed the declaration of thrown exceptions that cannot be thrown from method's body"
-rw-r--r--framework/src/main/java/org/onap/cli/fw/store/OnapCommandArtifactStore.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/src/main/java/org/onap/cli/fw/store/OnapCommandArtifactStore.java b/framework/src/main/java/org/onap/cli/fw/store/OnapCommandArtifactStore.java
index 3b6e7853..3f59074a 100644
--- a/framework/src/main/java/org/onap/cli/fw/store/OnapCommandArtifactStore.java
+++ b/framework/src/main/java/org/onap/cli/fw/store/OnapCommandArtifactStore.java
@@ -259,7 +259,7 @@ public class OnapCommandArtifactStore {
}
}
- public Artifact setArtifact(Artifact artifact, Artifact existing) throws OnapCommandArtifactNotFound, OnapCommandArtifactContentNotExist, OnapCommandArtifactAlreadyExist, IOException, NoSuchAlgorithmException {
+ public Artifact setArtifact(Artifact artifact, Artifact existing) throws OnapCommandArtifactContentNotExist, IOException, NoSuchAlgorithmException {
if (artifact.getName() == null) {
artifact.setName(existing.getName());
}