2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2026-04-08 16:10:26 +00:00

add missing final keyword to PROXY_TIMEOUT var

This commit is contained in:
2022-11-14 08:40:46 +04:00
parent e5f0075a58
commit c69b1e214e

View File

@@ -4,7 +4,7 @@ import com.google.common.annotations.VisibleForTesting;
@VisibleForTesting
public class RedisUtil {
public static int PROXY_TIMEOUT = 30;
public final static int PROXY_TIMEOUT = 30;
public static boolean isRedisVersionRight(String redisVersion) {
String[] args = redisVersion.split("\\.");
if (args.length < 2) {