Skip to content

Commit ce2ecf8

Browse files
committed
post rebase cleanup
1 parent 1d603f3 commit ce2ecf8

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

src/cdk/table/coalesced-style-scheduler.ts

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -57,22 +57,6 @@ export class _CoalescedStyleScheduler implements OnDestroy {
5757
this._destroyed.complete();
5858
}
5959

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-
7660
private _createScheduleIfNeeded() {
7761
if (this._currentSchedule) { return; }
7862

0 commit comments

Comments
 (0)