delete semicolon

This commit is contained in:
Michael Lively 2024-04-29 16:08:08 -07:00
parent 10bea6aa29
commit 14f4172323
No known key found for this signature in database
GPG key ID: 91F42FA34885BFCA

View file

@ -45,7 +45,7 @@ function getMarkdownHeadersInCellFallbackToHtmlTags(fullContent: string) {
export class NotebookOutlineEntryFactory {
private cellOutlineEntryCache: Record<string, entryDesc[]> = {};
private readonly cachedMarkdownOutlineEntries = new WeakMap<ICellViewModel, { alternativeId: number; headers: { depth: number, text: string }[] }>();
private readonly cachedMarkdownOutlineEntries = new WeakMap<ICellViewModel, { alternativeId: number; headers: { depth: number, text: string }[] }>()
constructor(
private readonly executionStateService: INotebookExecutionStateService
) { }