From 040870eced4dc3e273313b9ec2ce7bb88d9cc6a0 Mon Sep 17 00:00:00 2001 From: bjculkin Date: Mon, 12 Feb 2018 22:57:29 -0500 Subject: Commenting --- base/src/main/java/bjc/utils/funcutils/TreeUtils.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'base/src/main/java/bjc/utils/funcutils/TreeUtils.java') diff --git a/base/src/main/java/bjc/utils/funcutils/TreeUtils.java b/base/src/main/java/bjc/utils/funcutils/TreeUtils.java index 1bdd7b3..ac8bb69 100644 --- a/base/src/main/java/bjc/utils/funcutils/TreeUtils.java +++ b/base/src/main/java/bjc/utils/funcutils/TreeUtils.java @@ -13,9 +13,15 @@ import bjc.utils.funcdata.IList; * @author Benjamin Culkin */ public class TreeUtils { - /* + /** * Convert a tree into a list of outline nodes that match a certain * path. + * + * @param tre + * The tree to outline. + * @param leafMarker + * The path to mark nodes with. + * @return The list of marked paths. */ public static IList> outlineTree(ITree tre, Predicate leafMarker) { IList> paths = new FunctionalList<>(); -- cgit v1.2.3