Skip to content

Commit 9f967f9

Browse files
committed
fix conflicts.
1 parent b524385 commit 9f967f9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

java-diff-utils/src/main/java/com/github/difflib/UnifiedDiffUtils.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public static Patch<String> parseUnifiedDiff(List<String> diff) {
5959
Matcher m = UNIFIED_DIFF_CHUNK_REGEXP.matcher(line);
6060
if (m.find()) {
6161
// Process the lines in the previous chunk
62-
processTheLinesInPrevChunk(rawChunk, patch, old_ln, new_ln);
62+
processLinesInPrevChunk(rawChunk, patch, old_ln, new_ln);
6363
// Parse the @@ header
6464
old_ln = m.group(1) == null ? 1 : Integer.parseInt(m.group(1));
6565
new_ln = m.group(3) == null ? 1 : Integer.parseInt(m.group(3));
@@ -84,12 +84,12 @@ public static Patch<String> parseUnifiedDiff(List<String> diff) {
8484
}
8585

8686
// Process the lines in the last chunk
87-
processTheLinesInPrevChunk(rawChunk, patch, old_ln, new_ln);
87+
processLinesInPrevChunk(rawChunk, patch, old_ln, new_ln);
8888

8989
return patch;
9090
}
9191

92-
private static void processTheLinesInPrevChunk(List<String[]> rawChunk, Patch<String> patch, int old_ln, int new_ln) {
92+
private static void processLinesInPrevChunk(List<String[]> rawChunk, Patch<String> patch, int old_ln, int new_ln) {
9393
String tag;
9494
String rest;
9595
if (!rawChunk.isEmpty()) {

0 commit comments

Comments
 (0)