Remove unneeded TODOs

This commit is contained in:
Daniel Imms 2022-02-02 12:11:53 -08:00
parent 7ca7fbceb6
commit f8d64e0c98
2 changed files with 0 additions and 3 deletions

View file

@ -27,7 +27,6 @@ const enum Constants {
MaxResolvedLinkLength = 1024,
}
// TODO: Share caching code with local link detector
const cachedValidatedLinks = new Map<string, { uri: URI; link: string; isDirectory: boolean } | null>();
export class TerminalUriLinkDetector implements ITerminalLinkDetector {

View file

@ -31,8 +31,6 @@ suite('Workbench - TerminalUriLinkDetector', () => {
text: string,
expected: (Pick<ITerminalSimpleLink, 'text'> & { range: [number, number][] })[]
) {
// TODO: Only URL links are tested currently but this detector can also detect loca
// file/folder links
await assertLinkHelper(text, expected, detector, type);
}