From 5318bab51708435fd62cee303c8ed6e2ff2aa6f4 Mon Sep 17 00:00:00 2001 From: Anders Hejlsberg Date: Fri, 8 Aug 2014 17:03:51 -0700 Subject: [PATCH] Removing unused variable. --- src/compiler/scanner.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/compiler/scanner.ts b/src/compiler/scanner.ts index e7313481bc0..2de92ed02cc 100644 --- a/src/compiler/scanner.ts +++ b/src/compiler/scanner.ts @@ -384,7 +384,6 @@ module ts { var nextChar = text.charCodeAt(pos + 1); if (nextChar === CharacterCodes.slash || nextChar === CharacterCodes.asterisk) { var startPos = pos; - var comment: string = undefined; pos += 2; if (nextChar === CharacterCodes.slash) { while (pos < text.length) {