Quellcode durchsuchen

Removes forEach call

main
Eric Amodio vor 6 Jahren
Ursprung
Commit
59b39fda2b
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +2
    -2
      src/git/parsers/blameParser.ts

+ 2
- 2
src/git/parsers/blameParser.ts Datei anzeigen

@ -137,14 +137,14 @@ export class GitBlameParser {
}
}
commits.forEach(c => {
for (const [, c] of commits) {
if (c.author === undefined) return;
const author = authors.get(c.author);
if (author === undefined) return;
author.lineCount += c.lines.length;
});
}
const sortedAuthors = new Map([...authors.entries()].sort((a, b) => b[1].lineCount - a[1].lineCount));

Laden…
Abbrechen
Speichern