We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d603f3 commit ce2ecf8Copy full SHA for ce2ecf8
src/cdk/table/coalesced-style-scheduler.ts
@@ -57,22 +57,6 @@ export class _CoalescedStyleScheduler implements OnDestroy {
57
this._destroyed.complete();
58
}
59
60
- /**
61
- * Schedules the specified task to run after other scheduled tasks at the end of the current
62
- * VM turn.
63
- */
64
- scheduleEnd(task: () => unknown): void {
65
- this._createScheduleIfNeeded();
66
-
67
- this._currentSchedule!.endTasks.push(task);
68
- }
69
70
- /** Prevent any further tasks from running. */
71
- ngOnDestroy() {
72
- this._destroyed.next();
73
- this._destroyed.complete();
74
75
76
private _createScheduleIfNeeded() {
77
if (this._currentSchedule) { return; }
78
0 commit comments