On Mon, Jun 15, 2026 at 2:40 PM <[email protected]> wrote:
>
> This is an automated email from the ASF dual-hosted git repository.
>
> markt-asf pushed a commit to branch main
> in repository https://gitbox.apache.org/repos/asf/tomcat.git
>
>
> The following commit(s) were added to refs/heads/main by this push:
>      new 7d908a8f4b Fix Javadoc warnings (all from recent changes)
> 7d908a8f4b is described below
>
> commit 7d908a8f4b924e028da3bf69db210ceb26356b69
> Author: Mark Thomas <[email protected]>
> AuthorDate: Mon Jun 15 13:40:09 2026 +0100
>
>     Fix Javadoc warnings (all from recent changes)

I was planning to let some amount of decay creep in, then fix
everything in one go every N months using a big LLM patch.

Rémy

> ---
>  .../catalina/tribes/group/interceptors/OrderInterceptor.java       | 5 +++++
>  .../catalina/tribes/membership/cloud/CloudMembershipProvider.java  | 7 
> +++++++
>  java/org/apache/catalina/util/ContextName.java                     | 5 +++++
>  java/org/apache/tomcat/jni/SSL.java                                | 6 ++++++
>  4 files changed, 23 insertions(+)
>
> diff --git 
> a/java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java 
> b/java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java
> index 6a015ddcdc..59d9cda4ed 100644
> --- a/java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java
> +++ b/java/org/apache/catalina/tribes/group/interceptors/OrderInterceptor.java
> @@ -263,6 +263,11 @@ public class OrderInterceptor extends 
> ChannelInterceptorBase {
>              this(0);
>          }
>
> +        /**
> +         * Constructs a Counter with the given initial value.
> +         *
> +         * @param startValue The initial value
> +         */
>          public Counter(int startValue) {
>              value =  new AtomicInteger(startValue);
>          }
> diff --git 
> a/java/org/apache/catalina/tribes/membership/cloud/CloudMembershipProvider.java
>  
> b/java/org/apache/catalina/tribes/membership/cloud/CloudMembershipProvider.java
> index 0ed73d5227..dc9a1e7114 100644
> --- 
> a/java/org/apache/catalina/tribes/membership/cloud/CloudMembershipProvider.java
> +++ 
> b/java/org/apache/catalina/tribes/membership/cloud/CloudMembershipProvider.java
> @@ -135,6 +135,13 @@ public abstract class CloudMembershipProvider extends 
> MembershipProviderBase imp
>          return val;
>      }
>
> +    /**
> +     * Default constructor.
> +     */
> +    public CloudMembershipProvider() {
> +    }
> +
> +
>      /**
>       * Get the Kubernetes namespace, or "tomcat" if the Kubernetes 
> environment variable cannot be found (with a warning
>       * log about the missing namespace).
> diff --git a/java/org/apache/catalina/util/ContextName.java 
> b/java/org/apache/catalina/util/ContextName.java
> index 2bb4cf1cd9..18c224c431 100644
> --- a/java/org/apache/catalina/util/ContextName.java
> +++ b/java/org/apache/catalina/util/ContextName.java
> @@ -198,6 +198,11 @@ public final class ContextName {
>      }
>
>
> +    /**
> +     * Checks if the path for this instance is valid.
> +     *
> +     * @return {@code true} if the path given/calculated for this instance 
> is valid, otherwise {@code false}
> +     */
>      public boolean isPathValid() {
>          // No need to test for null since path can never be null (see 
> constructors)
>          //
> diff --git a/java/org/apache/tomcat/jni/SSL.java 
> b/java/org/apache/tomcat/jni/SSL.java
> index 8753beb09c..0b3e3e8ae1 100644
> --- a/java/org/apache/tomcat/jni/SSL.java
> +++ b/java/org/apache/tomcat/jni/SSL.java
> @@ -975,6 +975,12 @@ public final class SSL {
>       */
>      public static native int getPostHandshakeAuthInProgress(long ssl);
>
> +    /**
> +     * Marks post handshake authentication complete for the connection. Used 
> when JSSE is performing certificate
> +     * verification for OpenSSL.
> +     *
> +     * @param ssl the SSL instance (SSL *)
> +     */
>      public static native void markPostHandshakeAuthComplete(long ssl);
>
>      /**
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to