Removed old TODO comment

This commit is contained in:
Bill Ticehurst 2016-06-26 23:33:46 -07:00
parent 0174bda004
commit 1b43bd8e83

View file

@ -1901,7 +1901,7 @@ namespace ts {
// See if we need to reprocess the imports due to prior skipped imports
if (file && lookUp(modulesWithElidedImports, file.path)) {
if (currentNodeModulesJsDepth < maxNodeModulesJsDepth) { // TODO: Check for off-by-ones
if (currentNodeModulesJsDepth < maxNodeModulesJsDepth) {
modulesWithElidedImports[file.path] = false;
processImportedModules(file, getDirectoryPath(fileName));
}