DR_NodeService-Removed unused variable 42/75342/1
authorDriptaroop Das <driptaroop.das@in.ibm.com>
Mon, 7 Jan 2019 07:24:44 +0000 (12:54 +0530)
committerDriptaroop Das <driptaroop.das@in.ibm.com>
Mon, 7 Jan 2019 07:24:52 +0000 (12:54 +0530)
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>
src/main/java/org/onap/dmaap/dbcapi/service/DR_NodeService.java

index cf8c7c1..b478dca 100644 (file)
@@ -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 ) {