aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDriptaroop Das <driptaroop.das@in.ibm.com>2019-01-07 12:54:44 +0530
committerDriptaroop Das <driptaroop.das@in.ibm.com>2019-01-07 12:54:52 +0530
commit0fbacaf4463d3e35f8d743b35955b996fda9ec16 (patch)
tree19dcf07f9854b428e5df27ab241b17c1b67b49dc
parent536c6aabdfd2bcdc493501a9498fb8a97d208c0b (diff)
DR_NodeService-Removed unused variable
DR_NodeService.java - Remove this unused "resp" local variable. Issue-ID: DMAAP-936 Change-Id: I1c90f2ba9ac69838a718471c7ed34e56b6a6aaab Signed-off-by: Driptaroop Das <driptaroop.das@in.ibm.com>
-rw-r--r--src/main/java/org/onap/dmaap/dbcapi/service/DR_NodeService.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/org/onap/dmaap/dbcapi/service/DR_NodeService.java b/src/main/java/org/onap/dmaap/dbcapi/service/DR_NodeService.java
index cf8c7c1..b478dca 100644
--- a/src/main/java/org/onap/dmaap/dbcapi/service/DR_NodeService.java
+++ b/src/main/java/org/onap/dmaap/dbcapi/service/DR_NodeService.java
@@ -3,6 +3,8 @@
* org.onap.dcae
* ================================================================================
* Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ *
+ * 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.
@@ -58,7 +60,7 @@ public class DR_NodeService extends BaseLoggingClass {
private void setX( String X, String list, ApiError apiError ) {
DrProvConnection prov = new DrProvConnection();
prov.makeNodesConnection( X, list );
- String resp = prov.doPutNodes( apiError );
+ prov.doPutNodes( apiError );
}
private String removeFromList( String aNode, String aList ) {