diff options
author | varun gudisena <varuneshwar.gudisena@att.com> | 2019-01-22 18:50:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-01-22 18:50:50 +0000 |
commit | 2f31db57d0b46089b96b0816257352ca837919d1 (patch) | |
tree | 3c624c4230f0e49281c3fde1eabc5bb14a2c8ee0 /src/main/java/org/onap | |
parent | 83680b266e5edea3487d1b662af4f3f1466a1013 (diff) | |
parent | 0fbacaf4463d3e35f8d743b35955b996fda9ec16 (diff) |
Merge "DR_NodeService-Removed unused variable"
Diffstat (limited to 'src/main/java/org/onap')
-rw-r--r-- | src/main/java/org/onap/dmaap/dbcapi/service/DR_NodeService.java | 4 |
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 ) { |