We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b17bbb1 commit b9fea86Copy full SHA for b9fea86
java-diff-utils/src/main/java/com/github/difflib/patch/Patch.java
@@ -57,7 +57,7 @@ public List<T> applyTo(List<T> target) throws PatchFailedException {
57
ListIterator<AbstractDelta<T>> it = getDeltas().listIterator(deltas.size());
58
while (it.hasPrevious()) {
59
AbstractDelta<T> delta = it.previous();
60
- delta.applyTo(result);
+ delta.verifyAntApplyTo(result);
61
}
62
return result;
63
0 commit comments