Skip to content

Commit bb063f1

Browse files
committed
Remove incorrect comment
1 parent 5fd16ca commit bb063f1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/services/codefixes/fixUnusedIdentifier.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ namespace ts.codefix {
9494
return [deleteNodeInList(parent)];
9595
}
9696

97-
// handle case where "import d, * as ns from './file'"
98-
// or "'import {a, b as ns} from './file'"
9997
case SyntaxKind.ImportClause: // this covers both 'import |d|' and 'import |d,| *'
10098
const importClause = <ImportClause>parent;
10199
if (!importClause.namedBindings) { // |import d from './file'|

0 commit comments

Comments
 (0)