diff --git a/src/services/shims.ts b/src/services/shims.ts index 4551013ff8d..90a015240f0 100644 --- a/src/services/shims.ts +++ b/src/services/shims.ts @@ -409,8 +409,6 @@ namespace ts { } public readDirectory(rootDir: string, extension: string, exclude: string[]): string[] { - // Consider removing the optional designation for - // the exclude param at this time. const encoded = this.shimHost.readDirectory(rootDir, extension, JSON.stringify(exclude)); return JSON.parse(encoded); }