Skip to content

Commit

Permalink
Formatting ref #104400
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackson Kearl committed Aug 12, 2020
1 parent 9c1df26 commit 44dc166
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vs/workbench/services/search/common/textSearchManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ export class TextSearchManager {
}

const newResultSize = this.resultSize(result);
this.resultCount += newResultSize; if (newResultSize > 0 || !extensionResultIsMatch(result)) {
this.resultCount += newResultSize;
if (newResultSize > 0 || !extensionResultIsMatch(result)) {
this.collector!.add(result, folderIdx);
}
}
Expand Down

0 comments on commit 44dc166

Please sign in to comment.