Skip to content

Commit 5318bab

Browse files
committed
Removing unused variable.
1 parent be56670 commit 5318bab

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/compiler/scanner.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,6 @@ module ts {
384384
var nextChar = text.charCodeAt(pos + 1);
385385
if (nextChar === CharacterCodes.slash || nextChar === CharacterCodes.asterisk) {
386386
var startPos = pos;
387-
var comment: string = undefined;
388387
pos += 2;
389388
if (nextChar === CharacterCodes.slash) {
390389
while (pos < text.length) {

0 commit comments

Comments
 (0)