Skip to content

Commit 3415ca6

Browse files
Remove now-outdated non-null comment around #18217.
1 parent 9ce87a0 commit 3415ca6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/services/navigateTo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ namespace ts.NavigateTo {
130130
textSpan: createTextSpanFromNode(declaration),
131131
// TODO(jfreeman): What should be the containerName when the container has a computed name?
132132
containerName: containerName ? (containerName as Identifier).text : "",
133-
containerKind: containerName ? getNodeKind(container) : ScriptElementKind.unknown, // TODO: GH#18217 Just use `container ? ...`
133+
containerKind: containerName ? getNodeKind(container) : ScriptElementKind.unknown,
134134
};
135135
}
136136
}

0 commit comments

Comments
 (0)