Skip to content

Commit

Permalink
Fix javadoc issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Henrik Kaipe committed May 14, 2024
1 parent c09f672 commit b3bcda2
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public interface Identifier<T,
* <pre><code>
* LazyParams.pickValue("foobar", EnumType.FOO, EnumType.BAR);
* </code></pre> ... will not be confused with ... <pre><code>
* LazyParams.pickValue("foo", EnumType.values())
* LazyParams.pickValue("foobar", EnumType.values())
* </code></pre> ... in case <code>FOO</code> and <code>BAR</code> are all the
* constants of enum <code>EnumType</code>.
* <br>
Expand All @@ -295,8 +295,7 @@ public interface Identifier<T,
* and
* {@link LazyParams#pickValue(String, Object[])
* pickValue(String parameterName, T[] values)} (even though they
* overload one another) will internally provide different ID-details
* to this method!
* overload one another) will internally provide different extra ID-details.
*/
returns_Factory_with_Identifier_selected withExtraIdDetails(Object... extraIdDetails);
}
Expand Down

0 comments on commit b3bcda2

Please sign in to comment.