Modify the condition of break while statement.

This commit is contained in:
Kui LIU
2017-07-31 21:20:13 +02:00
parent e0b4b7c47f
commit 4febcdbb23
@@ -340,7 +340,7 @@ public class SingleStatementParser {
contextLines ++;
}
if (bugStartLine + bugLineIndex >= endLineNum && fixStartLine + fixLineIndex >= endLineNum2) {
if (bugStartLine + bugLineIndex > endLineNum && fixStartLine + fixLineIndex > endLineNum2) {
break;
}
}