diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2019-11-21 14:37:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-11-21 14:37:03 +0000 |
commit | 6fc70e6a48856c7e39cce8b70d11b5ea08e2c613 (patch) | |
tree | 8bdf74eb3b171fcc42ce5c1fceb4757f2e6baf51 | |
parent | a8d97381d7762c5e5e99f72468cd39596fcca8bc (diff) | |
parent | 85b2f448d42c2f8e9813b05690279a6b642bf562 (diff) |
Merge "Remove the declaration of thrown exception 'java.lang.Exception', as it cannot be thrown from method's body"
-rw-r--r-- | auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_Proxy.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_Proxy.java b/auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_Proxy.java index 962b9859..c77e9a85 100644 --- a/auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_Proxy.java +++ b/auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_Proxy.java @@ -59,7 +59,7 @@ public class API_Proxy { * @param facade * @throws Exception */ - public static void init(final AAF_Locate gwAPI, LocateFacade facade) throws Exception { + public static void init(final AAF_Locate gwAPI, LocateFacade facade) { String aafurl = gwAPI.access.getProperty(Config.AAF_URL,null); if (aafurl!=null) { |