Skip to content

Commit

Permalink
[#850] (javadoc) fix @SInCE tag
Browse files Browse the repository at this point in the history
  • Loading branch information
remkop committed Nov 16, 2019
1 parent d84bb6c commit f013349
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/picocli/CommandLine.java
Original file line number Diff line number Diff line change
Expand Up @@ -5628,7 +5628,7 @@ private void check(ArgGroupSpec group, Set<ArgGroupSpec> existing) {
* @param annotatedElement the `{@literal @}Mixin`-annotated program element
* @return this CommandSpec for method chaining
* @see #mixinAnnotatedElements()
* @since 5.0 */
* @since 4.1 */
public CommandSpec addMixin(String name, CommandSpec mixin, IAnnotatedElement annotatedElement) {
CommandSpec result = addMixin(name, mixin);
mixinAnnotatedElements.put(interpolator.interpolate(name), annotatedElement);
Expand Down Expand Up @@ -5703,7 +5703,7 @@ void initParentCommand(Object parent) {
/** Returns a map of the mixin names to mixin {@code IAnnotatedElement} objects for this command.
* @return an immutable map of `{@literal @}Mixin`-annotated elements added to this command.
* @see #addMixin(String, CommandSpec, IAnnotatedElement)
* @since 5.0 */
* @since 4.1 */
public Map<String, IAnnotatedElement> mixinAnnotatedElements() { return Collections.unmodifiableMap(mixinAnnotatedElements); }

/** Returns the list of options configured for this command.
Expand Down

0 comments on commit f013349

Please sign in to comment.