refactor(common): remove unnecesary null (#47238)

These null values are unused and unecessary. I suspect it's a remnant from when the codebase was transpiled to Dart.

PR Close #47238
This commit is contained in:
Jeremy Elbourn 2022-08-23 15:45:48 -07:00 committed by Andrew Kushnir
parent 834927d0e7
commit 0e147cf6cb

View file

@ -240,5 +240,5 @@ export class MockPlatformLocation implements PlatformLocation {
}
export function scheduleMicroTask(cb: () => any) {
Promise.resolve(null).then(cb);
Promise.resolve().then(cb);
}