Skip to content

Commit c33105d

Browse files
authored
Update netty to 4.1.115.Final
Also clean up a number of javadoc warnings from Java 21
1 parent 8babf7f commit c33105d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+398
-251
lines changed

driver/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<copyright>Copyright (c) 2011, 2024 Oracle and/or its affiliates. All rights reserved.</copyright>
4747
<java.apidoc>http://docs.oracle.com/javase/8/docs/api</java.apidoc>
4848
<maven.deploy.skip>false</maven.deploy.skip>
49-
<netty.version>4.1.108.Final</netty.version>
49+
<netty.version>4.1.115.Final</netty.version>
5050
<jackson.version>2.15.2</jackson.version>
5151
<!-- by default, skip tests; tests require a profile -->
5252
<maven.test.skip>true</maven.test.skip>
@@ -379,7 +379,7 @@
379379
<version>3.5.0</version>
380380
<configuration>
381381
<quiet>true</quiet>
382-
<!-- consider this: <doclint>-missing</doclint> -->
382+
<doclint>-missing</doclint>
383383
<source>8</source>
384384
<doctitle>${project.name} ${project.version}</doctitle>
385385
<windowtitle>${project.name} ${project.version}</windowtitle>

driver/src/main/java/oracle/nosql/driver/BatchOperationNumberLimitException.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ public class BatchOperationNumberLimitException extends ResourceLimitException {
1919
private static final long serialVersionUID = 1L;
2020

2121
/**
22-
* @hidden
22+
* internal use only
2323
* @param msg the message
24+
* @hidden
2425
*/
2526
public BatchOperationNumberLimitException(String msg) {
2627
super(msg);

driver/src/main/java/oracle/nosql/driver/DeploymentException.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ public class DeploymentException extends ResourceLimitException {
2020
private static final long serialVersionUID = 1L;
2121

2222
/**
23-
* @hidden
23+
* internal use only
2424
* @param msg the exception message
25+
* @hidden
2526
*/
2627
public DeploymentException(String msg) {
2728
super(msg);

driver/src/main/java/oracle/nosql/driver/DriverMain.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
import java.util.jar.Manifest;
1515

1616
/**
17-
* @hidden
18-
*
1917
* A simple main for the driver jar file. At this time it only handles a
2018
* "version" command. If it ever is extended for other arguments it should
2119
* be better abstracted for multiple commands
20+
*
21+
* @hidden
2222
*/
2323
public class DriverMain {
2424

driver/src/main/java/oracle/nosql/driver/EvolutionLimitException.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ public class EvolutionLimitException extends ResourceLimitException {
1818
private static final long serialVersionUID = 1L;
1919

2020
/**
21-
* @hidden
21+
* internal use only
2222
*
2323
* @param msg the exception message
24+
* @hidden
2425
*/
2526
public EvolutionLimitException(String msg) {
2627
super(msg);

driver/src/main/java/oracle/nosql/driver/IndexExistsException.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ public class IndexExistsException extends ResourceExistsException {
1616
private static final long serialVersionUID = 1L;
1717

1818
/**
19-
* @hidden
19+
* internal use only
2020
* @param msg the exception message
21+
* @hidden
2122
*/
2223
public IndexExistsException(String msg) {
2324
super(msg);

driver/src/main/java/oracle/nosql/driver/IndexLimitException.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,9 @@ public class IndexLimitException extends ResourceLimitException {
1818
private static final long serialVersionUID = 1L;
1919

2020
/**
21-
* @hidden
21+
* internal use only
2222
* @param msg the exception message
23+
* @hidden
2324
*/
2425
public IndexLimitException(String msg) {
2526
super(msg);

driver/src/main/java/oracle/nosql/driver/IndexNotFoundException.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ public class IndexNotFoundException extends ResourceNotFoundException {
1616
private static final long serialVersionUID = 1L;
1717

1818
/**
19-
* @hidden
19+
* internal use only
2020
* @param msg the exception message
21+
* @hidden
2122
*/
2223
public IndexNotFoundException(String msg) {
2324
super(msg);

driver/src/main/java/oracle/nosql/driver/InvalidAuthorizationException.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ public class InvalidAuthorizationException extends NoSQLException {
1616
private static final long serialVersionUID = 1L;
1717

1818
/**
19-
* @hidden
19+
* internal use only
2020
* @param msg the exception message
21+
* @hidden
2122
*/
2223
public InvalidAuthorizationException(String msg) {
2324
super(msg);

driver/src/main/java/oracle/nosql/driver/JsonParseException.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,17 +26,19 @@ public class JsonParseException extends NoSQLException {
2626
private JsonLocation location;
2727

2828
/**
29-
* @hidden
29+
* internal use only
3030
* @param msg the exception message
31+
* @hidden
3132
*/
3233
public JsonParseException(String msg) {
3334
super(msg);
3435
}
3536

3637
/**
37-
* @hidden
38+
* internal use only
3839
* @param msg the exception message
3940
* @param location the exception location in the input
41+
* @hidden
4042
*/
4143
public JsonParseException(String msg, JsonLocation location) {
4244
super(msg);
@@ -79,8 +81,9 @@ public String toString() {
7981
}
8082

8183
/**
82-
* @hidden
84+
* Internal use only
8385
* @return the location of the exception in the input
86+
* @hidden
8487
*/
8588
public JsonLocation getLocation() {
8689
return location;

0 commit comments

Comments
 (0)