2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2024-11-22 12:18:01 +00:00

add missing final keyword to PROXY_TIMEOUT var

This commit is contained in:
mohammed jasem alaajel 2022-11-14 08:40:46 +04:00
parent e5f0075a58
commit c69b1e214e
No known key found for this signature in database

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) {