Skip to content

Commit

Permalink
Removed tests as they are platform specific.
Browse files Browse the repository at this point in the history
Removed wildcard imports.
Fixed wording in documentation.
  • Loading branch information
SanHalacogluImproving committed Jan 17, 2024
1 parent 333117f commit 0f5862c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 32 deletions.
2 changes: 1 addition & 1 deletion java/client/src/main/java/glide/api/RedisClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class RedisClient extends BaseClient implements BaseCommands {
* Request an async (non-blocking) Redis client in Standalone mode.
*
* @param config - Redis Client Configuration
* @return a promise to connect and return a RedisClient
* @return a future to connect and return a RedisClient
*/
public static CompletableFuture<RedisClient> CreateClient(RedisClientConfiguration config) {
ThreadPoolResource threadPoolResource = config.getThreadPoolResource();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
package glide.api;

import static glide.api.RedisClient.*;
import static glide.api.RedisClient.CreateClient;
import static glide.api.RedisClient.buildChannelHandler;
import static glide.api.RedisClient.buildCommandManager;
import static glide.api.RedisClient.buildConnectionManager;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.mockito.ArgumentMatchers.any;
Expand Down

This file was deleted.

0 comments on commit 0f5862c

Please sign in to comment.