1
0
Fork 0

Fix camel case...

master
Kyle Chaplin 2013-08-21 17:18:42 -05:00
parent 322647a3dc
commit 93c8aea028
1 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,7 @@ import net.sf.json.JSONSerializer;
*/
public class RestClient {
private HttpClient httpclient = null;
private HttpClient httpClient = null;
private ICredentials creds = null;
private URI uri = null;
@ -72,7 +72,7 @@ public class RestClient {
* @param uri Base URI of the remote REST service
*/
public RestClient(HttpClient httpclient, ICredentials creds, URI uri) {
this.httpclient = httpclient;
this.httpClient = httpclient;
this.creds = creds;
this.uri = uri;
}
@ -118,7 +118,7 @@ public class RestClient {
if (creds != null)
creds.authenticate(req);
HttpResponse resp = httpclient.execute(req);
HttpResponse resp = httpClient.execute(req);
HttpEntity ent = resp.getEntity();
StringBuilder result = new StringBuilder();