Reformat all files in the project according to java conventions.
This commit is contained in:
@@ -1,12 +1,11 @@
|
||||
package redis.clients.jedis;
|
||||
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
|
||||
/**
|
||||
* Multikey related commands (these are split out because they are non-shardable)
|
||||
* Multikey related commands (these are split out because they are
|
||||
* non-shardable)
|
||||
*/
|
||||
public interface MultiKeyCommandsPipeline {
|
||||
Response<Long> del(String... keys);
|
||||
@@ -39,7 +38,8 @@ public interface MultiKeyCommandsPipeline {
|
||||
|
||||
Response<Long> smove(String srckey, String dstkey, String member);
|
||||
|
||||
Response<Long> sort(String key, SortingParams sortingParameters, String dstkey);
|
||||
Response<Long> sort(String key, SortingParams sortingParameters,
|
||||
String dstkey);
|
||||
|
||||
Response<Long> sort(String key, String dstkey);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user