From 848dc739becfa41193aff9a07c918aed91e5ef79 Mon Sep 17 00:00:00 2001 From: bjculkin Date: Fri, 7 Apr 2017 08:56:27 -0400 Subject: Cleanup --- .../src/examples/java/bjc/utils/examples/TreeConstructTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'BJC-Utils2/src/examples/java/bjc') diff --git a/BJC-Utils2/src/examples/java/bjc/utils/examples/TreeConstructTest.java b/BJC-Utils2/src/examples/java/bjc/utils/examples/TreeConstructTest.java index 8c945e9..a8f8134 100644 --- a/BJC-Utils2/src/examples/java/bjc/utils/examples/TreeConstructTest.java +++ b/BJC-Utils2/src/examples/java/bjc/utils/examples/TreeConstructTest.java @@ -12,11 +12,11 @@ import bjc.utils.funcutils.ListUtils; import bjc.utils.funcutils.StringUtils; import bjc.utils.parserutils.ShuntingYard; import bjc.utils.parserutils.TreeConstructor; +import bjc.utils.parserutils.TreeConstructor.QueueFlattener; import java.util.Deque; import java.util.LinkedList; import java.util.Scanner; -import java.util.function.Function; import java.util.function.Predicate; /** @@ -92,7 +92,7 @@ public class TreeConstructTest { return false; }; - IMap>, ITree>> operators + IMap> operators = new FunctionalMap<>(); operators.put("[", (queuedTrees) -> { -- cgit v1.2.3