Fix lint errors

This commit is contained in:
zhengbli
2015-10-14 16:57:08 -07:00
parent c75499974e
commit fcfc25eeb0
2 changed files with 3 additions and 3 deletions

View File

@@ -833,7 +833,7 @@ namespace ts {
}
}
export function copyListRemovingItem<T>(item: T, list: T[]) {
export function copyListRemovingItem<T>(item: T, list: T[]) {
let copiedList: T[] = [];
for (var i = 0, len = list.length; i < len; i++) {
if (list[i] != item) {
@@ -842,4 +842,4 @@ namespace ts {
}
return copiedList;
}
}
}

View File

@@ -274,7 +274,7 @@ namespace ts {
startWatchTimer: startWatchTimer,
addFile: addFile,
removeFile: removeFile
}
};
}
// REVIEW: for now this implementation uses polling.