diff options
author | Thugutla Sailakshmi <tsaila10@in.ibm.com> | 2019-07-29 15:45:24 +0530 |
---|---|---|
committer | Thugutla Sailakshmi <tsaila10@in.ibm.com> | 2019-07-29 15:48:03 +0530 |
commit | 63dc2efa715145dc5d8f9df3d61be115cc27451c (patch) | |
tree | 7109a613b654a161bd99e83218defd56da59abe8 /aai-service | |
parent | dd48a8a5083e3a65c8b47ce45ce7517afc47c1ff (diff) |
CCSDK-1554 -Major issue-Remove this unused "cause" local variable.
Major issue-Remove this unused "cause" local variable.
Issue-ID: CCSDK-1554
Change-Id: I44ecce26b9cc22970eb10bfb9deaf0aa9ca34eca
Signed-off-by: Thugutla Sailakshmi <tsaila10@in.ibm.com>
Diffstat (limited to 'aai-service')
-rwxr-xr-x | aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIDeclarations.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIDeclarations.java b/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIDeclarations.java index 2aa5c5444..881817262 100755 --- a/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIDeclarations.java +++ b/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIDeclarations.java @@ -2,10 +2,10 @@ * ============LICENSE_START======================================================= * openECOMP : SDN-C * ================================================================================ - * Copyright (C) 2017 AT&T Intellectual Property. All rights + * Copyright (C) 2019 AT&T Intellectual Property. All rights * reserved. * ================================================================================ - * Modifications Copyright (C) 2018 IBM. + * Modifications Copyright (C) 2019 IBM. * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -1636,7 +1636,6 @@ public abstract class AAIDeclarations implements AAIClient { try { obj = getMetadataMethod.invoke(instance); } catch (InvocationTargetException x) { - Throwable cause = x.getCause(); } } if(obj != null && obj instanceof Metadata){ |