Skip to content

Commit 47c6e9b

Browse files
committed
Drop unnecessary Integer.toString
Signed-off-by: Stephen Kitt <skitt@redhat.com>
1 parent 2d116d8 commit 47c6e9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/github/difflib/algorithm/myers/PathNode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,9 @@ public String toString() {
102102
PathNode node = this;
103103
while (node != null) {
104104
buf.append("(");
105-
buf.append(Integer.toString(node.i));
105+
buf.append(node.i);
106106
buf.append(",");
107-
buf.append(Integer.toString(node.j));
107+
buf.append(node.j);
108108
buf.append(")");
109109
node = node.prev;
110110
}

0 commit comments

Comments
 (0)