File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
library/src/main/java/com/loopj/android/http Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 67
67
import org .apache .http .protocol .ExecutionContext ;
68
68
import org .apache .http .protocol .HttpContext ;
69
69
import org .apache .http .protocol .SyncBasicHttpContext ;
70
- import org .json .JSONObject ;
71
70
72
71
import java .io .IOException ;
73
72
import java .io .InputStream ;
Original file line number Diff line number Diff line change 24
24
25
25
/**
26
26
* 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.
28
29
* This implementation can and should go away when the official solution arrives.
29
30
*/
30
31
public final class HttpDelete extends HttpEntityEnclosingRequestBase {
Original file line number Diff line number Diff line change 24
24
25
25
/**
26
26
* 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.
28
29
* This implementation can and should go away when the official solution arrives.
29
30
*/
30
31
public final class HttpGet extends HttpEntityEnclosingRequestBase {
You can’t perform that action at this time.
0 commit comments