We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0396643 commit 6e9e01eCopy full SHA for 6e9e01e
src/main/java/io/doorbell/android/manavo/rest/RestRequest.java
@@ -24,6 +24,8 @@
24
import java.io.UnsupportedEncodingException;
25
import java.net.URL;
26
import java.net.URLEncoder;
27
+import java.util.Iterator;
28
+import java.util.List;
29
import java.util.Map;
30
import java.util.concurrent.ExecutorService;
31
import java.util.concurrent.Executors;
@@ -187,7 +189,7 @@ private void prepareRequest(HttpsURLConnection request) {
187
189
}
188
190
191
public void cancelRequest() {
- this.executorService.shutdown();
192
+ this.executorService.shutdownNow();
193
194
195
private Bundle executeRequest(HttpsURLConnection request) {
0 commit comments