Remove incorrect comment

This commit is contained in:
Mine Starks
2017-07-11 14:15:43 -07:00
parent 5fd16cae18
commit bb063f1b5c

View File

@@ -94,8 +94,6 @@ namespace ts.codefix {
return [deleteNodeInList(parent)];
}
// handle case where "import d, * as ns from './file'"
// or "'import {a, b as ns} from './file'"
case SyntaxKind.ImportClause: // this covers both 'import |d|' and 'import |d,| *'
const importClause = <ImportClause>parent;
if (!importClause.namedBindings) { // |import d from './file'|