From 9b516396b109f2660e2478f4ee0b5360a685ea0b Mon Sep 17 00:00:00 2001 From: Michael Reiche <48999328+mikereiche@users.noreply.github.com> Date: Wed, 13 Jul 2022 14:03:43 -0700 Subject: [PATCH] Give args to oneEntity() and allEntities() relevant names. Closed #1493. --- .../data/couchbase/core/ReactiveRemoveByIdOperation.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/springframework/data/couchbase/core/ReactiveRemoveByIdOperation.java b/src/main/java/org/springframework/data/couchbase/core/ReactiveRemoveByIdOperation.java index ecdf6a061..a9189c980 100644 --- a/src/main/java/org/springframework/data/couchbase/core/ReactiveRemoveByIdOperation.java +++ b/src/main/java/org/springframework/data/couchbase/core/ReactiveRemoveByIdOperation.java @@ -84,10 +84,10 @@ interface TerminatingRemoveById extends OneAndAllIdReactive { /** * Remove the documents in the collection. Requires whole entity for transaction to have the cas. * - * @param ids the document IDs. + * @param entities the entities to remove. * @return result of the removes. */ - Flux allEntities(Collection ids); + Flux allEntities(Collection entities); }