Removes unnecessary destroy methods
This commit is contained in:
parent
4e5077364e
commit
a1e1c5d185
19 changed files with 34 additions and 214 deletions
|
|
@ -153,7 +153,4 @@ export class MonthViewStrategy implements ViewStrategy {
|
|||
endDate
|
||||
};
|
||||
}
|
||||
|
||||
destroy(): void {
|
||||
}
|
||||
}
|
||||
|
|
@ -62,9 +62,4 @@ export interface ViewStrategy {
|
|||
* Get the period start and end dates for event filtering
|
||||
*/
|
||||
getPeriodRange(baseDate: Date): { startDate: Date; endDate: Date };
|
||||
|
||||
/**
|
||||
* Clean up any view-specific resources
|
||||
*/
|
||||
destroy(): void;
|
||||
}
|
||||
|
|
@ -71,8 +71,4 @@ export class WeekViewStrategy implements ViewStrategy {
|
|||
endDate: weekEnd
|
||||
};
|
||||
}
|
||||
|
||||
destroy(): void {
|
||||
// Clean up any week-specific resources
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue