Skip to content

Commit be211e4

Browse files
committed
Merge branch 'master' of github.com:loopj/android-async-http
2 parents 78e74c2 + 0fcdd63 commit be211e4

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,7 @@ Documentation, Features and Examples
4949
Full details and documentation can be found on the project page here:
5050

5151
http://loopj.com/android-async-http/
52+
53+
54+
[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/loopj/android-async-http/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
55+

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
/**
66
* A Handle to an AsyncRequest which can be used to cancel a running request.
77
*/
8-
public class RequestHandle {
8+
class RequestHandle {
99
private final WeakReference<AsyncHttpRequest> request;
1010

1111
public RequestHandle(AsyncHttpRequest request) {
12-
this.request = new WeakReference<AsyncHttpRequest>(request);
12+
this.request = new WeakReference(request);
1313
}
1414

1515
/**

0 commit comments

Comments
 (0)