Skip to content

Commit a64318f

Browse files
committed
Fix javadoc warnings
1 parent 7f26873 commit a64318f

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

driver/src/main/java/oracle/nosql/driver/ops/Request.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ public int getTimeoutInternal() {
8484
/**
8585
* @hidden
8686
* this is public to allow access from Client during refresh
87+
* @param timeoutMs timeout in milliseconds
8788
*/
8889
public void setTimeoutInternal(int timeoutMs) {
8990
if (timeoutMs <= 0) {
@@ -454,6 +455,7 @@ public boolean getIsRefresh() {
454455
/**
455456
* @hidden
456457
* Copy internal fields to another Request object.
458+
* @param other the request to copy
457459
*/
458460
public void copyTo(Request other) {
459461
other.setTimeoutInternal(this.timeoutMs);

driver/src/main/java/oracle/nosql/driver/ops/RetryStats.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ public Map<Class<? extends Throwable>, Integer> getExceptionMap() {
125125
* @hidden
126126
* Internal use only.
127127
* Adds stats to the current object.
128+
* @param rs the stats to add
128129
*/
129130
public void addStats(RetryStats rs) {
130131
if (rs == null) {

0 commit comments

Comments
 (0)