spell it out for the maven-javadoc-plugin
Project: http://git-wip-us.apache.org/repos/asf/any23/repo Commit: http://git-wip-us.apache.org/repos/asf/any23/commit/7cbd82e8 Tree: http://git-wip-us.apache.org/repos/asf/any23/tree/7cbd82e8 Diff: http://git-wip-us.apache.org/repos/asf/any23/diff/7cbd82e8 Branch: refs/heads/master Commit: 7cbd82e88234b90d195fdbcba6055ccfdab157fa Parents: 6021d21 Author: Hans <[email protected]> Authored: Tue Oct 23 16:11:56 2018 -0500 Committer: Hans <[email protected]> Committed: Tue Oct 23 16:11:56 2018 -0500 ---------------------------------------------------------------------- api/src/main/java/org/apache/any23/configuration/Setting.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/any23/blob/7cbd82e8/api/src/main/java/org/apache/any23/configuration/Setting.java ---------------------------------------------------------------------- diff --git a/api/src/main/java/org/apache/any23/configuration/Setting.java b/api/src/main/java/org/apache/any23/configuration/Setting.java index 6932afd..92a3632 100644 --- a/api/src/main/java/org/apache/any23/configuration/Setting.java +++ b/api/src/main/java/org/apache/any23/configuration/Setting.java @@ -165,7 +165,7 @@ public final class Setting<V> { * {@code this.checkValue(null, value)} * </pre> * - * @see #checkValue(Setting, V) + * @see #checkValue(Setting, Object) */ public final Setting<V> withValue(V value) { return checked(null, value); @@ -236,7 +236,7 @@ public final class Setting<V> { * {@code this.key.checkValue(this, newValue)} * </pre> * - * @see Key#checkValue(Setting, V) + * @see Key#checkValue(Setting, Object) */ public Setting<V> withValue(V newValue) { return key.checked(this, newValue);
