summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/funcdata/ITree.java
diff options
context:
space:
mode:
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/funcdata/ITree.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/funcdata/ITree.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/funcdata/ITree.java b/BJC-Utils2/src/main/java/bjc/utils/funcdata/ITree.java
index e0c63e3..c773f4e 100644
--- a/BJC-Utils2/src/main/java/bjc/utils/funcdata/ITree.java
+++ b/BJC-Utils2/src/main/java/bjc/utils/funcdata/ITree.java
@@ -43,7 +43,8 @@ public interface ITree<ContainedType> {
*/
public <NewType, ReturnedType> ReturnedType collapse(
Function<ContainedType, NewType> leafTransform,
- Function<ContainedType, Function<IList<NewType>, NewType>> nodeCollapser,
+ Function<ContainedType,
+ Function<IList<NewType>, NewType>> nodeCollapser,
Function<NewType, ReturnedType> resultTransformer);
/**
@@ -128,7 +129,8 @@ public interface ITree<ContainedType> {
* @return The tree with the transform applied to picked subtrees
*/
public ITree<ContainedType> topDownTransform(
- Function<ContainedType, TopDownTransformResult> transformPicker,
+ Function<ContainedType,
+ TopDownTransformResult> transformPicker,
UnaryOperator<ITree<ContainedType>> transformer);
/**