From 4ef8e0bb734dd1041578aa155dae01787aa97828 Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Fri, 8 Jan 2016 02:25:29 +0900 Subject: [PATCH] remove unneeded comment --- src/services/shims.ts | 2 -- 1 file changed, 2 deletions(-) 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); }