diff options
author | Instrumental <jonathan.gathman@att.com> | 2019-02-20 11:14:41 -0600 |
---|---|---|
committer | Instrumental <jonathan.gathman@att.com> | 2019-02-20 11:15:17 -0600 |
commit | 2b46f76d9a688acf326424659ec9672a2614fdcf (patch) | |
tree | 1ff396c03af82fe73615c61b10ec868f060da412 /auth/auth-locate | |
parent | bf3d3075cac610b901c951ae135fcdbcc6ffecb8 (diff) |
fix new openssl, data, etc
Issue-ID: AAF-667
Change-Id: Ic87c5159c453c293d845abea6be0c4cfb3164fc1
Signed-off-by: Instrumental <jonathan.gathman@att.com>
Diffstat (limited to 'auth/auth-locate')
-rw-r--r-- | auth/auth-locate/src/main/java/org/onap/aaf/auth/locate/api/API_Proxy.java | 3 |
1 files changed, 1 insertions, 2 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 19c09ff0..85860316 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 @@ -62,8 +62,7 @@ public class API_Proxy { public static void init(final AAF_Locate gwAPI, LocateFacade facade) throws Exception { String aafurl = gwAPI.access.getProperty(Config.AAF_URL,null); - if (aafurl==null) { - } else { + if (aafurl!=null) { //////// // Transferring APIs // But DO NOT transfer BasicAuth case... wastes resources. |