Remove noise in TreeList.AVLNode#toString()

This commit is contained in:
Gary Gregory 2024-01-27 08:48:50 -05:00
parent 3fce6dbb00
commit 86d1f5d0dd
1 changed files with 1 additions and 2 deletions

View File

@ -743,9 +743,8 @@ public class TreeList<E> extends AbstractList<E> {
.append(value)
.append(CollectionUtils.COMMA)
.append(getRightSubTree() != null)
.append(", faedelung ")
.append(rightIsNext)
.append(" )")
.append(")")
.toString();
}
}