summaryrefslogtreecommitdiffstats
path: root/auth/auth-cmd
diff options
context:
space:
mode:
authorJonathan Gathman <jonathan.gathman@att.com>2018-09-11 15:02:18 +0000
committerGerrit Code Review <gerrit@onap.org>2018-09-11 15:02:18 +0000
commit97b752ccd6c7f0244f32503c5e2db0a27400ecf2 (patch)
tree38568aa46e4f403842030f814f1e574e207bba02 /auth/auth-cmd
parent4045b507124fa0314228a1a9152fd0f73d62ed38 (diff)
parentb32455b39056726e2b15c204bf11235e14fd5553 (diff)
Merge "Cache.java: Fixed sonar issues"
Diffstat (limited to 'auth/auth-cmd')
-rw-r--r--auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/mgmt/Cache.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/mgmt/Cache.java b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/mgmt/Cache.java
index fd257d63..c39ea0fa 100644
--- a/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/mgmt/Cache.java
+++ b/auth/auth-cmd/src/main/java/org/onap/aaf/auth/cmd/mgmt/Cache.java
@@ -25,7 +25,7 @@ import org.onap.aaf.auth.cmd.BaseCmd;
import org.onap.aaf.misc.env.APIException;
public class Cache extends BaseCmd<Mgmt> {
- public Cache(Mgmt mgmt) throws APIException {
+ public Cache(Mgmt mgmt) {
super(mgmt, "cache");
cmds.add(new Clear(this));
}