Skip to content

Commit b034710

Browse files
committed
8356629: Incorrect use of {@linkplain} in java.sql
Reviewed-by: lancea
1 parent b037353 commit b034710

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/java.sql/share/classes/java/sql/DatabaseMetaData.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -3589,7 +3589,7 @@ ResultSet getFunctionColumns(String catalog,
35893589
* DECIMAL_DIGITS is not applicable.
35903590
* <LI><B>NUM_PREC_RADIX</B> int {@code =>} Radix (typically either 10 or 2)
35913591
* <LI><B>COLUMN_USAGE</B> String {@code =>} The allowed usage for the column. The
3592-
* value returned will correspond to the enum name returned by {@link PseudoColumnUsage#name PseudoColumnUsage.name()}
3592+
* value returned will correspond to the enum name returned by {@link PseudoColumnUsage#name() PseudoColumnUsage.name()}
35933593
* <LI><B>REMARKS</B> String {@code =>} comment describing column (may be {@code null})
35943594
* <LI><B>CHAR_OCTET_LENGTH</B> int {@code =>} for char types the
35953595
* maximum number of bytes in the column

src/java.sql/share/classes/java/sql/DriverManager.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 1996, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 1996, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -59,7 +59,7 @@
5959
* </ul>
6060
*
6161
* <li>Service providers of the {@code java.sql.Driver} class, that are loaded
62-
* via the {@linkplain ServiceLoader#load service-provider loading} mechanism.
62+
* via the {@linkplain ServiceLoader#load(Class) service-provider loading} mechanism.
6363
*</ul>
6464
*
6565
* @implNote

0 commit comments

Comments
 (0)