diff options
| author | Ben Culkin <scorpress@gmail.com> | 2021-03-13 10:15:01 -0500 |
|---|---|---|
| committer | Ben Culkin <scorpress@gmail.com> | 2021-03-13 10:15:01 -0500 |
| commit | 46c719b5538e8728f3f840b87064ddb04fa85517 (patch) | |
| tree | 3a4ecbd9f74fb9207db98e549071d229b94e10d1 /src/main/java/bjc/data/Lazy.java | |
| parent | 1b9aa36ee069938d49dc719dd0f23b6d877229cc (diff) | |
Update documentation
Diffstat (limited to 'src/main/java/bjc/data/Lazy.java')
| -rw-r--r-- | src/main/java/bjc/data/Lazy.java | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/main/java/bjc/data/Lazy.java b/src/main/java/bjc/data/Lazy.java index 5fcd2ae..b237935 100644 --- a/src/main/java/bjc/data/Lazy.java +++ b/src/main/java/bjc/data/Lazy.java @@ -195,9 +195,10 @@ public class Lazy<ContainedType> implements Holder<ContainedType> { /** * Create a new lazy container with an already present value. - * - * @param val - * The value for the lazy container. + * + * @param <ContainedType> The type of the contained value. + * + * @param val The value for the lazy container. * * @return A new lazy container holding that value. */ @@ -208,8 +209,9 @@ public class Lazy<ContainedType> implements Holder<ContainedType> { /** * Create a new lazy container with a suspended value. * - * @param supp - * The suspended value for the lazy container. + * @param <ContainedType> The type of the contained value. + * + * @param supp The suspended value for the lazy container. * * @return A new lazy container that will un-suspend the value when necessary. */ |
