Skip to content

Commit

Permalink
Fix PureGitExtendedFileAnalysis>>#computeVersions by using UnifiedDif…
Browse files Browse the repository at this point in the history
…fChangeChunk's effectiveOldStart instead of oldStart
  • Loading branch information
svenvc committed Nov 2, 2024
1 parent 4e7f17e commit a02f2fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Iceberg-Git-CLI/PureGitExtendedFileAnalysis.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ PureGitExtendedFileAnalysis >> computeVersions [
streamContents: [ :out |
commit changesToParent changeChunks
do: [ :changeChunk |
[ oldLineNumber < changeChunk oldStart ]
[ oldLineNumber < changeChunk effectiveOldStart ]
whileTrue: [ line := previous at: oldLineNumber.
line positionInVersionAt: rank put: newLineNumber.
out nextPut: line.
Expand Down

0 comments on commit a02f2fc

Please sign in to comment.