mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-19 17:58:17 +08:00
update ruoyi-common/ruoyi-common-redis/src/main/java/org/dromara/common/redis/utils/RedisUtils.java.
fix: 变量名修改stream->keysStream Signed-off-by: Lucien_Lu <lushangpeng@hotmail.com>
This commit is contained in:
parent
4d7ce8fd11
commit
9b8f4688d3
@ -545,8 +545,8 @@ public class RedisUtils {
|
||||
* @see KeysScanOptions
|
||||
*/
|
||||
public static Collection<String> keys(final KeysScanOptions KeysScanOptions) {
|
||||
Stream<String> stream = CLIENT.getKeys().getKeysStream(KeysScanOptions);
|
||||
return stream.collect(Collectors.toList());
|
||||
Stream<String> keysStream = CLIENT.getKeys().getKeysStream(KeysScanOptions);
|
||||
return keysStream.collect(Collectors.toList());
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Loading…
Reference in New Issue
Block a user