From 27bf571d6413c3cc6a5d664b5bddd38d21d7b1cd Mon Sep 17 00:00:00 2001 From: EVE Date: Mon, 13 Mar 2017 16:42:21 -0400 Subject: Formatting --- BJC-Utils2/src/main/java/bjc/utils/data/Option.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'BJC-Utils2/src/main/java/bjc/utils/data/Option.java') diff --git a/BJC-Utils2/src/main/java/bjc/utils/data/Option.java b/BJC-Utils2/src/main/java/bjc/utils/data/Option.java index 33b6327..210d2aa 100644 --- a/BJC-Utils2/src/main/java/bjc/utils/data/Option.java +++ b/BJC-Utils2/src/main/java/bjc/utils/data/Option.java @@ -9,7 +9,7 @@ import java.util.function.UnaryOperator; * @author ben * * @param - * The type of the value that may or may not be held + * The type of the value that may or may not be held */ public class Option implements IHolder { private ContainedType held; @@ -18,7 +18,7 @@ public class Option implements IHolder { * Create a new optional, using the given initial value * * @param seed - * The initial value for the optional + * The initial value for the optional */ public Option(ContainedType seed) { held = seed; -- cgit v1.2.3