We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b930616 commit c0341d6Copy full SHA for c0341d6
src/difflib/ChangeDelta.java
@@ -79,4 +79,9 @@ public void verify(List<?> target) throws PatchFailedException {
79
}
80
81
82
+ @Override
83
+ public String toString() {
84
+ return "[ChangeDelta, position: " + getOriginal().getPosition() + ", lines: "
85
+ + getOriginal().getLines() + " to " + getRevised().getLines() + "]";
86
+ }
87
0 commit comments