Skip to content

Commit

Permalink
FIX #190
Browse files Browse the repository at this point in the history
Change the access modifiers to protected for the result field and
responseHandler field
  • Loading branch information
Baron Hall committed Mar 13, 2013
1 parent 7853021 commit 457df9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/loopj/android/http/SyncHttpClient.java
Expand Up @@ -14,8 +14,8 @@ public abstract class SyncHttpClient extends AsyncHttpClient {
* the result back to this method. Therefore the result object has to be a
* field to be accessible
*/
private String result;
AsyncHttpResponseHandler responseHandler = new AsyncHttpResponseHandler() {
protected String result;
protected AsyncHttpResponseHandler responseHandler = new AsyncHttpResponseHandler() {

void sendResponseMessage(org.apache.http.HttpResponse response) {
responseCode = response.getStatusLine().getStatusCode();
Expand Down

0 comments on commit 457df9c

Please sign in to comment.