diff options
author | Dan Timoney <dtimoney@att.com> | 2019-07-30 12:35:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-07-30 12:35:44 +0000 |
commit | 46d8e0dbfcf79ba2cce564b74e03e8db2c26ab14 (patch) | |
tree | a8a864de7a93e95036b3e74853c0e942a6851908 /aai-service | |
parent | 877157e55de7ac18fdc9f63e1aafa757f51c030b (diff) | |
parent | 243986ef1508b24e9273613c9bb1e2d95999f661 (diff) |
Merge "CCSDK-1559 -Rename this local variable to match the regular expression '^[a-z][a-zA-Z0-9]*$'"
Diffstat (limited to 'aai-service')
-rwxr-xr-x | aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIService.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIService.java b/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIService.java index 41290c07..a683a93b 100755 --- a/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIService.java +++ b/aai-service/provider/src/main/java/org/onap/ccsdk/sli/adaptors/aai/AAIService.java @@ -1240,7 +1240,7 @@ public class AAIService extends AAIDeclarations implements AAIClient, SvcLogicRe } - protected boolean deleteList(URL httpReqUrl, String json_text) throws AAIServiceException { + protected boolean deleteList(URL httpReqUrl, String jsonText) throws AAIServiceException { if(httpReqUrl == null) { throw new NullPointerException(); } @@ -1253,15 +1253,15 @@ public class AAIService extends AAIDeclarations implements AAIClient, SvcLogicRe // SSLSocketFactory sockFact = CTX.getSocketFactory(); // con.setSSLSocketFactory( sockFact ); - if (json_text != null) { + if (jsonText != null) { OutputStreamWriter osw = new OutputStreamWriter(con.getOutputStream()); - osw.write(json_text); + osw.write(jsonText); osw.flush(); osw.close(); } LOGwriteFirstTrace("DELETE", httpReqUrl.toString()); - LOGwriteDateTrace("data", json_text); + LOGwriteDateTrace("data", jsonText); // Check for errors int responseCode = con.getResponseCode(); |