This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects

Resolve "Collections mehr hervorheben"

Merged Michael Breu requested to merge 460-collections-mehr-hervorheben into development
Viewing commit f388fadc
Show latest version
2 files
+ 19
6
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -74,19 +74,32 @@ class CollectionNode {
return children.stream().map(Object::toString).collect(Collectors.joining(", "));
}
/**
* prints the tree recursive to default logger
*/
public void printTreeRecursive() {
printTreeRecursive("");
printTreeRecursive(logger);
}
/**
* prints the tree recursive to some logger
*
* @param someLogger the logger to use
*/
public void printTreeRecursive(Logger someLogger) {
printTreeRecursive("", someLogger);
}
/**
* Used internally to recursively generate a visual representation of the tree.
*
* @param level distance from the root
* @param level distance from the root
* @param someLogger the logger to use
*/
private void printTreeRecursive(String indentation) {
logger.info("{}{}", indentation, this.item.getFullPath());
private void printTreeRecursive(String indentation, Logger someLogger) {
someLogger.info("{}{}", indentation, this.item.getFullPath());
for (CollectionNode child : children) {
child.printTreeRecursive(indentation + " ");
child.printTreeRecursive(indentation + " ", someLogger);
}
}