Skip to content

Commit 39afd6b

Browse files
committed
refactor: - remove useless initialisation
1 parent befd62b commit 39afd6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Task/ListItem.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export class ListItem {
77
// The original line read from file.
88
public readonly originalMarkdown: string;
99

10-
public readonly parent: ListItem | null = null;
10+
public readonly parent: ListItem | null;
1111
public readonly children: ListItem[] = [];
1212
public readonly indentation: string;
1313
public readonly listMarker: string;

0 commit comments

Comments
 (0)