Skip to content

Commit

Permalink
Fix: use completed accessor instead of isCompleted
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Berisso committed May 12, 2015
1 parent e87957d commit 82c1616
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bolts/Common/BFTask.m
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ - (instancetype)continueWithExecutor:(BFExecutor *)executor

BFTask *resultTask = (BFTask *)result;

if (resultTask.isCompleted) {
if (resultTask.completed) {
setupWithTask(resultTask);
} else {
[resultTask continueWithBlock:setupWithTask];
Expand Down

0 comments on commit 82c1616

Please sign in to comment.