summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/funcdata/Tree.java
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2016-08-24 14:46:16 -0400
committerbculkin2442 <bjculkin@mix.wvu.edu>2016-08-24 14:46:16 -0400
commit90f343c701585066bf30f226811d65f3bce58c95 (patch)
tree8b8d1f07bd2c486c9b2106f87b6c3c61f7300af2 /BJC-Utils2/src/main/java/bjc/utils/funcdata/Tree.java
parent6d454caf2bfa5207957b5da775ece2a249857ddd (diff)
Added tentative support for subrules
Added a new sort of config reader that tentatively supports subrules through indentation. I need to actually write a parser that uses it though. I think something to do with trees would work well for testing it.
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/funcdata/Tree.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/funcdata/Tree.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/funcdata/Tree.java b/BJC-Utils2/src/main/java/bjc/utils/funcdata/Tree.java
index 834c124..77b5673 100644
--- a/BJC-Utils2/src/main/java/bjc/utils/funcdata/Tree.java
+++ b/BJC-Utils2/src/main/java/bjc/utils/funcdata/Tree.java
@@ -134,7 +134,8 @@ public class Tree<ContainedType> implements ITree<ContainedType> {
Function<IList<NewType>, NewType> nodeTransformer = nodeCollapser
.apply(data);
- IList<NewType> collapsedChildren = children.map((child) -> {
+ @SuppressWarnings("unchecked")
+ IList<NewType> collapsedChildren = (IList<NewType>) children.map((child) -> {
return child.collapse(leafTransform, nodeCollapser,
(subTreeVal) -> subTreeVal);
});