Skip to content

Commit 423048b

Browse files
committed
Javadoc
Update links to the current Java LTS version
1 parent c5a3be6 commit 423048b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/org/apache/commons/cli/DeprecatedAttributes.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ public static class Builder implements Supplier<DeprecatedAttributes> {
4444
/**
4545
* Whether this option is subject to removal in a future version.
4646
*
47-
* @see <a href="https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.forRemoval</a>
47+
* @see <a href="https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.forRemoval</a>
4848
*/
4949
private boolean forRemoval;
5050

5151
/**
5252
* The version in which the option became deprecated.
5353
*
54-
* @see <a href="https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.since</a>
54+
* @see <a href="https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.since</a>
5555
*/
5656
private String since;
5757

@@ -86,7 +86,7 @@ public Builder setDescription(final String description) {
8686
*
8787
* @param forRemoval whether this is subject to removal in a future version.
8888
* @return {@code this} instance.
89-
* @see <a href="https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.forRemoval</a>
89+
* @see <a href="https://docs.oracle.com/en/java/javase/25/docs/api/java.base/java/lang/Deprecated.html#forRemoval()">Deprecated.forRemoval</a>
9090
*/
9191
public Builder setForRemoval(final boolean forRemoval) {
9292
this.forRemoval = forRemoval;

0 commit comments

Comments
 (0)