Skip to content

Commit 6452b70

Browse files
palfreyammolitor
authored andcommitted
Fix various Javadoc comments that break the doc build
1 parent 2f623f9 commit 6452b70

File tree

3 files changed

+7
-11
lines changed

3 files changed

+7
-11
lines changed

bindings/java/src/main/com/apple/foundationdb/Database.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -247,11 +247,10 @@ default CompletableFuture<Boolean> blobbifyRange(byte[] beginKey, byte[] endKey)
247247
CompletableFuture<Boolean> blobbifyRange(byte[] beginKey, byte[] endKey, Executor e);
248248

249249
/**
250-
* Runs {@link #blobbifyRange(byte[] beginKey, byte[] endKey, boolean wait)} on the default executor.
250+
* Runs {@link #blobbifyRange(byte[] beginKey, byte[] endKey, Executor e)} on the default executor.
251251
*
252252
* @param beginKey start of the key range
253253
* @param endKey end of the key range
254-
* @param wait wait for blobbification to complete
255254
256255
* @return if the recording of the range was successful
257256
*/
@@ -264,7 +263,6 @@ default CompletableFuture<Boolean> blobbifyRangeBlocking(byte[] beginKey, byte[]
264263
*
265264
* @param beginKey start of the key range
266265
* @param endKey end of the key range
267-
* @param wait wait for blobbification to complete
268266
* @param e the {@link Executor} to use for asynchronous callbacks
269267
270268
* @return if the recording of the range was successful
@@ -357,7 +355,7 @@ default CompletableFuture<Long> verifyBlobRange(byte[] beginKey, byte[] endKey,
357355
CompletableFuture<Long> verifyBlobRange(byte[] beginKey, byte[] endKey, long version, Executor e);
358356

359357
/**
360-
* Runs {@link #flushBlobRange(byte[] beginKey, byte[] endKey)} on the default executor.
358+
* Runs {@link #flushBlobRange(byte[] beginKey, byte[] endKey, boolean compact, long version, Executor e)} on the default executor.
361359
*
362360
* @param beginKey start of the key range
363361
* @param endKey end of the key range
@@ -370,7 +368,7 @@ default CompletableFuture<Boolean> flushBlobRange(byte[] beginKey, byte[] endKey
370368
}
371369

372370
/**
373-
* Runs {@link #flushBlobRange(byte[] beginKey, byte[] endKey, long version)} on the default executor.
371+
* Runs {@link #flushBlobRange(byte[] beginKey, byte[] endKey, boolean compact, long version, Executor e)} on the default executor.
374372
*
375373
* @param beginKey start of the key range
376374
* @param endKey end of the key range

bindings/java/src/main/com/apple/foundationdb/FDB.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* This call is required before using any other part of the API. The call allows
3838
* an error to be thrown at this point to prevent client code from accessing a later library
3939
* with incorrect assumptions from the current version. The latest supported API version
40-
* is defined as {@link ApiVersion.LATEST}.<br><br>
40+
* is defined as ApiVersion.LATEST.<br><br>
4141
* FoundationDB encapsulates multiple versions of its interface by requiring
4242
* the client to explicitly specify the version of the API it uses. The purpose
4343
* of this design is to allow you to upgrade the server, client libraries, or

bindings/java/src/main/com/apple/foundationdb/Tenant.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -334,11 +334,10 @@ default CompletableFuture<Boolean> blobbifyRange(byte[] beginKey, byte[] endKey)
334334
CompletableFuture<Boolean> blobbifyRange(byte[] beginKey, byte[] endKey, Executor e);
335335

336336
/**
337-
* Runs {@link #blobbifyRange(byte[] beginKey, byte[] endKey, boolean wait)} on the default executor.
337+
* Runs {@link #blobbifyRangeBlocking(byte[] beginKey, byte[] endKey, Executor e)} on the default executor.
338338
*
339339
* @param beginKey start of the key range
340340
* @param endKey end of the key range
341-
* @param wait wait for blobbification to complete
342341
343342
* @return if the recording of the range was successful
344343
*/
@@ -351,7 +350,6 @@ default CompletableFuture<Boolean> blobbifyRangeBlocking(byte[] beginKey, byte[]
351350
*
352351
* @param beginKey start of the key range
353352
* @param endKey end of the key range
354-
* @param wait wait for blobbification to complete
355353
* @param e the {@link Executor} to use for asynchronous callbacks
356354
357355
* @return if the recording of the range was successful
@@ -444,7 +442,7 @@ default CompletableFuture<Long> verifyBlobRange(byte[] beginKey, byte[] endKey,
444442
CompletableFuture<Long> verifyBlobRange(byte[] beginKey, byte[] endKey, long version, Executor e);
445443

446444
/**
447-
* Runs {@link #flushBlobRange(byte[] beginKey, byte[] endKey)} on the default executor.
445+
* Runs {@link #flushBlobRange(byte[] beginKey, byte[] endKey, boolean compact, long version, Executor e)} on the default executor.
448446
*
449447
* @param beginKey start of the key range
450448
* @param endKey end of the key range
@@ -457,7 +455,7 @@ default CompletableFuture<Boolean> flushBlobRange(byte[] beginKey, byte[] endKey
457455
}
458456

459457
/**
460-
* Runs {@link #flushBlobRange(byte[] beginKey, byte[] endKey, long version)} on the default executor.
458+
* Runs {@link #flushBlobRange(byte[] beginKey, byte[] endKey, boolean compact, long version, Executor e)} on the default executor.
461459
*
462460
* @param beginKey start of the key range
463461
* @param endKey end of the key range

0 commit comments

Comments
 (0)