We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c925c77 commit 7b0a575Copy full SHA for 7b0a575
1 file changed
src/PullRequestQuantifier.Abstractions/Git/GitFilePatch.cs
@@ -69,6 +69,8 @@ public string DiffContent
69
diffContent = value;
70
fileDiff = DiffParserHelper.Parse(value).First();
71
DiffLines = fileDiff.Chunks.SelectMany(c => c.Changes);
72
+ AbsoluteLinesAdded = fileDiff.Additions;
73
+ AbsoluteLinesDeleted = fileDiff.Deletions;
74
}
75
76
0 commit comments