diff --git a/java/client/src/main/java/glide/api/commands/StringBaseCommands.java b/java/client/src/main/java/glide/api/commands/StringBaseCommands.java
index 22fa4741af..d5dede43fa 100644
--- a/java/client/src/main/java/glide/api/commands/StringBaseCommands.java
+++ b/java/client/src/main/java/glide/api/commands/StringBaseCommands.java
@@ -255,10 +255,10 @@ public interface StringBaseCommands {
* @apiNote When in cluster mode, the command may route to multiple nodes when keys in
* keyValueMap
map to different hash slots.
* @see redis.io for details.
- * @param keyValueMap A key-value map consisting of keys and their respective values to set.
+ * @param keyValueMap A key-value map consisting of keys and their respective values to set.
* @return Always OK
.
- * @param ArgType you can only pass Keys and Values of types {@link String} and {@link GlideString}
- * Key and Value must be of same type.
+ * @param ArgType you can only pass Keys and Values of types {@link String} and {@link
+ * GlideString} Key and Value must be of same type.
* @example
*
{@code * String result = client.mset(Map.of("key1", "value1", "key2", "value2"}).get(); @@ -276,8 +276,8 @@ public interface StringBaseCommands { * @see redis.io for details. * @param keyValueMap A key-value map consisting of keys and their respective values to set. Note * @returntrue
if all keys were set.false
if no key was set. - * @param ArgType you can only pass Keys and Values of types {@link String} and {@link GlideString} - * Key and Value must be of same type. + * @param ArgType you can only pass Keys and Values of types {@link String} and {@link + * GlideString} Key and Value must be of same type. * @example *{@code * Boolean result = client.msetnx(Map.of("key1", "value1", "key2", "value2"}).get(); diff --git a/java/client/src/main/java/glide/utils/ArrayTransformUtils.java b/java/client/src/main/java/glide/utils/ArrayTransformUtils.java index 98a70563b5..f568516817 100644 --- a/java/client/src/main/java/glide/utils/ArrayTransformUtils.java +++ b/java/client/src/main/java/glide/utils/ArrayTransformUtils.java @@ -28,7 +28,6 @@ public static String[] convertMapToKeyValueStringArray(Mapargs) { } /** - * Converts a map of GlideString keys and values of any type in to an array of GlideStrings with * alternating keys and values. *