Style fixes.

This commit is contained in:
steveluc 2015-02-19 12:56:53 -08:00
parent 4b590836e7
commit d364f6110e
2 changed files with 0 additions and 2 deletions

View File

@ -24,7 +24,6 @@ module ts.server {
private fileMapping: ts.Map<string> = {};
private lineMaps: ts.Map<number[]> = {};
private messages: string[] = [];
private lastCompletionEntry: CompletionEntry;
private lastRenameEntry: RenameEntry;
constructor(private host: SessionClientHost) {

View File

@ -54,7 +54,6 @@ module ts.server {
}
function sortNavItems(items: ts.NavigateToItem[]) {
return items.sort((a, b) => {
if (a.matchKind < b.matchKind) {
return -1;