Skip to content

Commit 656c0d0

Browse files
committed
fix doc error, mvn javadoc:javadoc -pl core,query-builder,mapper-runtime can pass
1 parent 29d3531 commit 656c0d0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

core/src/main/java/com/datastax/oss/driver/api/core/config/DefaultDriverOption.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1016,8 +1016,8 @@ public enum DefaultDriverOption implements DriverOption {
10161016
* }
10171017
* </pre>
10181018
*
1019-
* Note: subnets must be represented as prefix blocks, see {@link
1020-
* inet.ipaddr.Address#isPrefixBlock()}.
1019+
* Note: subnets must be represented as prefix blocks, see <a
1020+
* href="https://javadoc.io/doc/com.github.seancfoley/ipaddress/latest/inet/ipaddr/Address.html#isPrefixBlock--">inet.ipaddr.Address.isPrefixBlock()</a>
10211021
*
10221022
* <p>Value type: {@link java.util.Map Map}&#60;{@link String},{@link String}&#62;
10231023
*/

core/src/main/java/com/datastax/oss/driver/api/core/data/CqlVector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public static <V> CqlVector<V> newInstance(List<V> list) {
8080
* Create a new CqlVector instance from the specified string representation.
8181
*
8282
* @param str a String representation of a CqlVector
83-
* @param subtypeCodec
83+
* @param subtypeCodec the codec to use to parse the individual elements
8484
* @return a new CqlVector built from the String representation
8585
*/
8686
public static <V> CqlVector<V> from(@NonNull String str, @NonNull TypeCodec<V> subtypeCodec) {

0 commit comments

Comments
 (0)