This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-collections.git
The following commit(s) were added to refs/heads/master by this push: new 86d1f5d0d Remove noise in TreeList.AVLNode#toString() 86d1f5d0d is described below commit 86d1f5d0ddd0e3ab3da8d640fee5a997970c7a81 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jan 27 08:48:50 2024 -0500 Remove noise in TreeList.AVLNode#toString() --- src/main/java/org/apache/commons/collections4/list/TreeList.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/list/TreeList.java b/src/main/java/org/apache/commons/collections4/list/TreeList.java index 55f17700c..e5760db53 100644 --- a/src/main/java/org/apache/commons/collections4/list/TreeList.java +++ b/src/main/java/org/apache/commons/collections4/list/TreeList.java @@ -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(); } }