From 946cab444bc301d8a7c756a1bab039558288de89 Mon Sep 17 00:00:00 2001 From: "Benjamin J. Culkin" Date: Wed, 11 Oct 2017 13:41:07 -0300 Subject: Cleanup work --- base/src/main/java/bjc/utils/data/ListHolder.java | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'base/src/main/java/bjc/utils/data/ListHolder.java') diff --git a/base/src/main/java/bjc/utils/data/ListHolder.java b/base/src/main/java/bjc/utils/data/ListHolder.java index 142057c..4564466 100644 --- a/base/src/main/java/bjc/utils/data/ListHolder.java +++ b/base/src/main/java/bjc/utils/data/ListHolder.java @@ -8,21 +8,21 @@ import bjc.utils.funcdata.FunctionalList; import bjc.utils.funcdata.IList; /** - * A holder that represents a set of non-deterministic computations + * A holder that represents a set of non-deterministic computations. * * @author ben * * @param - * The type of contained value + * The type of contained value. */ public class ListHolder implements IHolder { private IList heldValues; /** - * Create a new list holder + * Create a new list holder. * * @param values - * The possible values for the computation + * The possible values for the computation. */ @SafeVarargs public ListHolder(final ContainedType... values) { @@ -35,6 +35,7 @@ public class ListHolder implements IHolder { } } + /* Create a new holder with values. */ private ListHolder(final IList toHold) { heldValues = toHold; } -- cgit v1.2.3