Skip to content

Commit

Permalink
nit: reapply spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-talbenjo committed Jul 1, 2024
1 parent 8167b60 commit b1073ad
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -255,10 +255,10 @@ public interface StringBaseCommands {
* @apiNote When in cluster mode, the command may route to multiple nodes when keys in <code>
* keyValueMap</code> map to different hash slots.
* @see <a href="https://redis.io/commands/mset/">redis.io</a> 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 <code>OK</code>.
* @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
* <pre>{@code
* String result = client.mset(Map.of("key1", "value1", "key2", "value2"}).get();
Expand All @@ -276,8 +276,8 @@ public interface StringBaseCommands {
* @see <a href="https://redis.io/commands/msetnx/">redis.io</a> for details.
* @param keyValueMap A key-value map consisting of keys and their respective values to set. Note
* @return <code>true</code> if all keys were set. <code>false</code> 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
* <pre>{@code
* Boolean result = client.msetnx(Map.of("key1", "value1", "key2", "value2"}).get();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ public static String[] convertMapToKeyValueStringArray(Map<String, ?> args) {
}

/**
* Converts a map of GlideString keys and values of any type in to an array of GlideStrings with
* alternating keys and values.
*
Expand Down

0 comments on commit b1073ad

Please sign in to comment.