diff options
Diffstat (limited to 'src/main/java/bjc/data/Identity.java')
| -rw-r--r-- | src/main/java/bjc/data/Identity.java | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/main/java/bjc/data/Identity.java b/src/main/java/bjc/data/Identity.java index e488072..fc4798e 100644 --- a/src/main/java/bjc/data/Identity.java +++ b/src/main/java/bjc/data/Identity.java @@ -99,8 +99,8 @@ public class Identity<ContainedType> implements Holder<ContainedType> { /** * Create a new identity container. * - * @param val - * The contained value. + * @param <ContainedType> The type of the contained value. + * @param val The contained value. * * @return A new identity container. */ @@ -110,7 +110,9 @@ public class Identity<ContainedType> implements Holder<ContainedType> { /** * Create a new empty identity container. - * + * + * @param <ContainedType> The type of the contained value. + * * @return A new empty identity container. */ public static <ContainedType> Identity<ContainedType> id() { |
