Skip to content

Commit

Permalink
Merge pull request #97 from BrunoBerisso/master
Browse files Browse the repository at this point in the history
Fix: use 'completed' accessor instead of 'isCompleted'
  • Loading branch information
nlutsenko committed May 12, 2015
2 parents bd84de7 + 82c1616 commit f92e78b
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 @@ -324,7 +324,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 f92e78b

Please sign in to comment.