Skip to content

Commit 9ca1fe7

Browse files
committed
Remove comments.
JAVA-5530
1 parent 9e9f33d commit 9ca1fe7

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

driver-core/src/main/com/mongodb/internal/operation/ClientBulkWriteOperation.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ private void executeAllBatches(
244244
* <li>consume the cursor, which may involve executing `getMore` commands.</li>
245245
* </ul>
246246
*
247-
* @throws MongoException When a {@linkplain ClientBulkWriteException#getCause() top-level error} happens.
247+
* {@link SingleResultCallback<Void>} propagates {@link MongoException} when a {@linkplain ClientBulkWriteException#getCause() top-level error} happens.
248248
*/
249249
private void executeAllBatchesAsync(
250250
final WriteConcern effectiveWriteConcern,
@@ -330,7 +330,7 @@ private Integer executeBatch(
330330
}
331331

332332
/**
333-
* @return The start model index of the next batch, provided that the operation
333+
* @param finalCallback A callback that accepts the start model index of the next batch, provided that the operation
334334
* {@linkplain ExhaustiveClientBulkWriteCommandOkResponse#operationMayContinue(ConcreteClientBulkWriteOptions) may continue}
335335
* and there are unexecuted {@linkplain ClientNamespacedWriteModel models} left.
336336
*/

driver-reactive-streams/src/test/functional/com/mongodb/reactivestreams/client/ClientSideOperationTimeoutProseTest.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -489,13 +489,6 @@ public void testTimeoutMsISHonoredForNnextOperationWhenSeveralGetMoreExecutedInt
489489
}
490490
}
491491

492-
// @DisplayName("11. Multi-batch bulkWrites")
493-
// @Test
494-
// @Override
495-
// protected void test11MultiBatchBulkWrites() {
496-
// assumeTrue(java.lang.Boolean.parseBoolean(toString()), "BULK-TODO implement");
497-
// }
498-
499492
private static void assertCommandStartedEventsInOder(final List<String> expectedCommandNames,
500493
final List<CommandStartedEvent> commandStartedEvents) {
501494
assertEquals(expectedCommandNames.size(), commandStartedEvents.size(), "Expected: " + expectedCommandNames + ". Actual: "

0 commit comments

Comments
 (0)