From df972ae7dbdf051268c5cf7754e07c504524b197 Mon Sep 17 00:00:00 2001 From: bculkin2442 Date: Thu, 28 Jul 2016 11:00:25 -0400 Subject: Note something to see if needs to be fixed later --- BJC-Utils2/src/main/java/bjc/utils/data/Lazy.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'BJC-Utils2/src/main/java/bjc/utils/data/Lazy.java') diff --git a/BJC-Utils2/src/main/java/bjc/utils/data/Lazy.java b/BJC-Utils2/src/main/java/bjc/utils/data/Lazy.java index fb1a517..112a503 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/data/Lazy.java +++ b/BJC-Utils2/src/main/java/bjc/utils/data/Lazy.java @@ -16,13 +16,13 @@ import bjc.utils.funcdata.IList; * @param */ public class Lazy implements IHolder { - private Supplier valueSupplier; + private Supplier valueSupplier; private IList> actions = new FunctionalList<>(); - private boolean valueMaterialized; + private boolean valueMaterialized; - private ContainedType heldValue; + private ContainedType heldValue; /** * Create a new lazy value from the specified seed value @@ -137,7 +137,6 @@ public class Lazy implements IHolder { @Override public Function> lift( Function func) { - // TODO Auto-generated method stub return (val) -> { return new Lazy<>(func.apply(val)); }; -- cgit v1.2.3