refactor(ahc): remove comments

This commit is contained in:
dancingCycle 2022-01-21 16:33:41 -05:00
parent 58c5e67b81
commit 6dab35ba6d
1 changed files with 0 additions and 17 deletions

View File

@ -92,12 +92,6 @@ public class Main {
HttpClient client = new DefaultHttpClient(ccm, params);
/**TODO
List nvps = new ArrayList();
nvps.add(new BasicNameValuePair("key1", "val1"));
nvps.add(new BasicNameValuePair("key2", "val3"));
*/
String address = URL + ":" + PORT + ROUTE;
System.out.println("address: " + address);
@ -141,14 +135,6 @@ public class Main {
entity = new ByteArrayEntity(payload.toString().getBytes(StandardCharsets.UTF_8));
post.setEntity(entity);
/**TODO
try {
post.setEntity(new UrlEncodedFormEntity(nvps, HTTP.UTF_8));
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
*/
//send request
HttpResponse response = null;
try {
@ -158,7 +144,6 @@ public class Main {
e.printStackTrace();
}
//read response status
Scanner sc = null;
if (response != null) {
@ -201,8 +186,6 @@ public class Main {
statusPhrase = response.getStatusLine().getReasonPhrase();
System.out.println("statusPhrase: " + statusPhrase);
}
}
static void post(final String uuid, final double latitude, final double longitude,