Skip to content

Commit 4f73e51

Browse files
author
Sabi
committed
comments updated
1 parent 7cc6b8d commit 4f73e51

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

library/src/main/java/com/loopj/android/http/AsyncHttpClient.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@
6767
import org.apache.http.protocol.ExecutionContext;
6868
import org.apache.http.protocol.HttpContext;
6969
import org.apache.http.protocol.SyncBasicHttpContext;
70-
import org.json.JSONObject;
7170

7271
import java.io.IOException;
7372
import java.io.InputStream;

library/src/main/java/com/loopj/android/http/HttpDelete.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424

2525
/**
2626
* The current Android (API level 21) bundled version of the Apache Http Client does not implement
27-
* the HTTP PATCH method. Until the Android version is updated this can serve in it's stead.
27+
* a HttpEntityEnclosingRequestBase type of HTTP DELETE method.
28+
* Until the Android version is updated this can serve in it's stead.
2829
* This implementation can and should go away when the official solution arrives.
2930
*/
3031
public final class HttpDelete extends HttpEntityEnclosingRequestBase {

library/src/main/java/com/loopj/android/http/HttpGet.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424

2525
/**
2626
* The current Android (API level 21) bundled version of the Apache Http Client does not implement
27-
* the HTTP PATCH method. Until the Android version is updated this can serve in it's stead.
27+
* a HttpEntityEnclosingRequestBase type of HTTP GET method.
28+
* Until the Android version is updated this can serve in it's stead.
2829
* This implementation can and should go away when the official solution arrives.
2930
*/
3031
public final class HttpGet extends HttpEntityEnclosingRequestBase {

0 commit comments

Comments
 (0)