From 2bbdaeb3b2296a2910e5d44152a02cc0f098ce59 Mon Sep 17 00:00:00 2001
From: Valery Kharseko <vharseko@3a-systems.ru>
Date: Wed, 15 Jul 2026 06:08:37 +0000
Subject: [PATCH] Enable Javadoc doclint (all,-missing) and fail on warnings (#734)

---
 opendj-cli/src/main/java/com/forgerock/opendj/cli/MultiChoiceArgument.java |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/opendj-cli/src/main/java/com/forgerock/opendj/cli/MultiChoiceArgument.java b/opendj-cli/src/main/java/com/forgerock/opendj/cli/MultiChoiceArgument.java
index 7dd713c..fc9499b 100644
--- a/opendj-cli/src/main/java/com/forgerock/opendj/cli/MultiChoiceArgument.java
+++ b/opendj-cli/src/main/java/com/forgerock/opendj/cli/MultiChoiceArgument.java
@@ -13,6 +13,7 @@
  *
  * Copyright 2006-2008 Sun Microsystems, Inc.
  * Portions copyright 2014-2016 ForgeRock AS.
+ * Portions Copyright 2026 3A Systems, LLC.
  */
 package com.forgerock.opendj.cli;
 
@@ -36,7 +37,7 @@
 
     /**
      * Returns a builder which can be used for incrementally constructing a new
-     * {@link MultiChoiceArgument<V>}.
+     * {@link MultiChoiceArgument}.
      *
      * @param <V>
      *         The type of values returned by this argument.
@@ -48,7 +49,7 @@
         return new Builder<>(longIdentifier);
     }
 
-    /** A fluent API for incrementally constructing {@link MultiChoiceArgument<V>}. */
+    /** A fluent API for incrementally constructing {@link MultiChoiceArgument}. */
     public static final class Builder<V> extends ArgumentBuilder<Builder<V>, V, MultiChoiceArgument<V>> {
         private final List<V> allowedValues = new LinkedList<>();
 
@@ -62,10 +63,10 @@
         }
 
         /**
-         * Specifies the set of values that are allowed for the {@link MultiChoiceArgument<V>}.
+         * Specifies the set of values that are allowed for the {@link MultiChoiceArgument}.
          *
          * @param allowedValues
-         *         The {@link MultiChoiceArgument<V>} allowed values.
+         *         The {@link MultiChoiceArgument} allowed values.
          * @return This builder.
          */
         public Builder<V> allowedValues(final Collection<V> allowedValues) {
@@ -74,10 +75,10 @@
         }
 
         /**
-         * Specifies the set of values that are allowed for the {@link MultiChoiceArgument<V>}.
+         * Specifies the set of values that are allowed for the {@link MultiChoiceArgument}.
          *
          * @param allowedValues
-         *         The {@link MultiChoiceArgument<V>} allowed values.
+         *         The {@link MultiChoiceArgument} allowed values.
          * @return This builder.
          */
         @SuppressWarnings("unchecked")

--
Gitblit v1.10.0