File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
library/src/main/java/com/loopj/android/http Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 18
18
19
19
package com .loopj .android .http ;
20
20
21
- import com .loopj .android .http .entities .FormEntityFactory ;
22
21
import com .loopj .android .http .interfaces .RequestParamInterface ;
23
22
import com .loopj .android .http .interfaces .RequestParamsInterface ;
24
23
import com .loopj .android .http .interfaces .ResponseHandlerInterface ;
@@ -169,7 +168,7 @@ public HttpEntity getEntity(ResponseHandlerInterface handlerInterface) {
169
168
if (useJsonStreamer ) {
170
169
171
170
} else if (!hasFiles () && !hasStreams ()) {
172
- return FormEntityFactory .getFormEntity (this );
171
+ return HttpEntityFactory .getFormEntity (this );
173
172
}
174
173
return null ;
175
174
}
Original file line number Diff line number Diff line change 13
13
import cz .msebera .android .httpclient .client .entity .UrlEncodedFormEntity ;
14
14
import cz .msebera .android .httpclient .message .BasicNameValuePair ;
15
15
16
+ /**
17
+ * @deprecated
18
+ */
16
19
public class FormEntityFactory {
17
20
18
21
public static HttpEntity getFormEntity (RequestParamsInterface params ) {
You can’t perform that action at this time.
0 commit comments