From c9c73b6eb330ce629695875d0329d1a08f9c8983 Mon Sep 17 00:00:00 2001 From: Christoph Strobl Date: Mon, 15 Mar 2021 07:52:12 +0100 Subject: [PATCH] Reorder parameters in JavaDoc. Original Pull Request: #356 --- .../springframework/data/keyvalue/core/KeyValueAdapter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/springframework/data/keyvalue/core/KeyValueAdapter.java b/src/main/java/org/springframework/data/keyvalue/core/KeyValueAdapter.java index 3cbbe9d..a3fcc78 100644 --- a/src/main/java/org/springframework/data/keyvalue/core/KeyValueAdapter.java +++ b/src/main/java/org/springframework/data/keyvalue/core/KeyValueAdapter.java @@ -105,8 +105,8 @@ public interface KeyValueAdapter extends DisposableBean { /** * Get all elements for given keyspace. * - * @param type must not be {@literal null}. * @param keyspace must not be {@literal null}. + * @param type must not be {@literal null}. * @return empty {@link Collection} if nothing found. * @since 2.5 */ @@ -126,8 +126,8 @@ public interface KeyValueAdapter extends DisposableBean { /** * Returns a {@link CloseableIterator} that iterates over all entries. * - * @param type must not be {@literal null}. * @param keyspace must not be {@literal null}. + * @param type must not be {@literal null}. * @return * @since 2.5 */