Skip to content

Commit 1f9f86d

Browse files
committed
Use java boolean
1 parent 7aaf159 commit 1f9f86d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ public void remove(String key) {
332332
* @param key the key name for the parameter to check existence.
333333
* @return Boolean
334334
*/
335-
public Boolean has(String key) {
335+
public boolean has(String key) {
336336
return urlParams.get(key) != null ||
337337
streamParams.get(key) != null ||
338338
fileParams.get(key) != null ||

0 commit comments

Comments
 (0)