This commit is contained in:
Julian Dolby 2014-11-24 11:21:23 -05:00
commit e4b113d33f
1 changed files with 1 additions and 1 deletions

View File

@ -180,7 +180,7 @@ public class DelegatingNumberedNodeManager<T extends INodeWithNumber> implements
@Override
public String toString() {
StringBuffer result = new StringBuffer("Nodes:\n");
for (int i = 0; i < maxNumber; i++) {
for (int i = 0; i <= maxNumber; i++) {
result.append(i).append(" ");
if (nodes[i] != null) {
result.append(nodes[i].toString());