Skip to content

Commit

Permalink
fix(TS@next): remove unnecessary return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed Aug 10, 2018
1 parent 37c5c09 commit 89e081f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internal/scheduler/AsyncAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class AsyncAction<T> extends Action<T> {
}
// Otherwise, if the action's delay time is different from the current delay,
// or the action has been rescheduled before it's executed, clear the interval id
return clearInterval(id) && undefined || undefined;
clearInterval(id);
}

/**
Expand Down

0 comments on commit 89e081f

Please sign in to comment.