Skip to content

Commit 9b51639

Browse files
committed
Give args to oneEntity() and allEntities() relevant names.
Closed #1493.
1 parent 8285b2f commit 9b51639

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/springframework/data/couchbase/core/ReactiveRemoveByIdOperation.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,10 @@ interface TerminatingRemoveById extends OneAndAllIdReactive<RemoveResult> {
8484
/**
8585
* Remove the documents in the collection. Requires whole entity for transaction to have the cas.
8686
*
87-
* @param ids the document IDs.
87+
* @param entities the entities to remove.
8888
* @return result of the removes.
8989
*/
90-
Flux<RemoveResult> allEntities(Collection<Object> ids);
90+
Flux<RemoveResult> allEntities(Collection<Object> entities);
9191

9292
}
9393

0 commit comments

Comments
 (0)