Skip to content

Commit 865a464

Browse files
committed
1 parent bb79a9b commit 865a464

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/github/difflib/unifieddiff/UnifiedDiffReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public final class UnifiedDiffReader {
4646
new UnifiedDiffLine(true, "^index\\s[\\da-zA-Z]+\\.\\.[\\da-zA-Z]+(\\s(\\d+))?$", this::processIndex),
4747
new UnifiedDiffLine(true, "^---\\s", this::processFromFile),
4848
new UnifiedDiffLine(true, "^\\+\\+\\+\\s", this::processToFile),
49-
new UnifiedDiffLine(true, UNIFIED_DIFF_CHUNK_REGEXP, this::processChunk),
49+
new UnifiedDiffLine(false, UNIFIED_DIFF_CHUNK_REGEXP, this::processChunk),
5050
new UnifiedDiffLine("^\\s+", this::processNormalLine),
5151
new UnifiedDiffLine("^-", this::processDelLine),
5252
new UnifiedDiffLine("^+", this::processAddLine)

0 commit comments

Comments
 (0)