mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-01-15 17:25:33 -05:00
Changes to undefined checks
This commit is contained in:
@@ -42,9 +42,7 @@ export class GitBlameParser {
|
||||
let position = -1;
|
||||
while (++position < lines.length) {
|
||||
const lineParts = lines[position].split(' ');
|
||||
if (lineParts.length < 2) {
|
||||
continue;
|
||||
}
|
||||
if (lineParts.length < 2) continue;
|
||||
|
||||
if (entry === undefined) {
|
||||
entry = {
|
||||
|
||||
Reference in New Issue
Block a user