Skip to content

Commit

Permalink
Fix compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
jianghaolu committed Aug 10, 2016
1 parent 5e6d8d2 commit ca25c1c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ private class ParallelServiceCall extends ServiceCall<T> {
*/
public void cancel() {
for (ServiceCall<?> call : this.serviceCalls) {
call.cancel();
call.cancel(true);
}
}

Expand All @@ -153,7 +153,7 @@ public void cancel() {
*/
public boolean isCancelled() {
for (ServiceCall<?> call : this.serviceCalls) {
if (!call.isCanceled()) {
if (!call.isCancelled()) {
return false;
}
}
Expand Down

0 comments on commit ca25c1c

Please sign in to comment.