From 89e081fd8bf3fa5afc84397feb9794073ef29f70 Mon Sep 17 00:00:00 2001 From: Ben Lesh Date: Fri, 10 Aug 2018 13:38:23 -0700 Subject: [PATCH] fix(TS@next): remove unnecessary return statement --- src/internal/scheduler/AsyncAction.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/scheduler/AsyncAction.ts b/src/internal/scheduler/AsyncAction.ts index 70dc249e08..44c1ca26c6 100644 --- a/src/internal/scheduler/AsyncAction.ts +++ b/src/internal/scheduler/AsyncAction.ts @@ -79,7 +79,7 @@ export class AsyncAction extends Action { } // 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); } /**