This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-cli.git


The following commit(s) were added to refs/heads/master by this push:
     new 423048b1 Javadoc
423048b1 is described below

commit 423048b164c61f0eb7ca907108168ff7a36996b1
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Sep 18 11:11:32 2025 -0400

    Javadoc
    
    Update links to the current Java LTS version
---
 src/main/java/org/apache/commons/cli/DeprecatedAttributes.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/cli/DeprecatedAttributes.java 
b/src/main/java/org/apache/commons/cli/DeprecatedAttributes.java
index 3bc4e72b..b4ec5f35 100644
--- a/src/main/java/org/apache/commons/cli/DeprecatedAttributes.java
+++ b/src/main/java/org/apache/commons/cli/DeprecatedAttributes.java
@@ -44,14 +44,14 @@ public final class DeprecatedAttributes {
         /**
          * Whether this option is subject to removal in a future version.
          *
-         * @see <a 
href="https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.forRemoval</a>
+         * @see <a 
href="https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.forRemoval</a>
          */
         private boolean forRemoval;
 
         /**
          * The version in which the option became deprecated.
          *
-         * @see <a 
href="https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.since</a>
+         * @see <a 
href="https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.since</a>
          */
         private String since;
 
@@ -86,7 +86,7 @@ public final class DeprecatedAttributes {
          *
          * @param forRemoval whether this is subject to removal in a future 
version.
          * @return {@code this} instance.
-         * @see <a 
href="https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.forRemoval</a>
+         * @see <a 
href="https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.forRemoval</a>
          */
         public Builder setForRemoval(final boolean forRemoval) {
             this.forRemoval = forRemoval;

Reply via email to