From f2ffd7e94e3b22f8a2f4e4191e6536a755cadc0f Mon Sep 17 00:00:00 2001 From: skyslience <627241778@qq.com> Date: Tue, 12 Jun 2018 23:13:47 +0800 Subject: [PATCH] update the pom lib version and fix a loop error --- pom.xml | 10 +++++----- .../minecraft/redisbungee/RedisBungee.java | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pom.xml b/pom.xml index 4471ae1..1f319cf 100644 --- a/pom.xml +++ b/pom.xml @@ -98,32 +98,32 @@ redis.clients jedis - 2.8.0 + 2.9.0 compile org.apache.commons commons-pool2 - 2.4.2 + 2.5.0 compile net.md-5 bungeecord-api - 1.8-SNAPSHOT + 1.12-SNAPSHOT jar provided org.projectlombok lombok - 1.12.2 + 1.16.16 provided com.squareup.okhttp okhttp - 2.2.0 + 2.7.5 compile diff --git a/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungee.java b/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungee.java index c1968c8..4060754 100644 --- a/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungee.java +++ b/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungee.java @@ -350,7 +350,7 @@ public final class RedisBungee extends Plugin { Pipeline pipeline = tmpRsc.pipelined(); - for (String player : absentLocally) { + for (String player : absentInRedis) { // Player not online according to Redis but not BungeeCord. getLogger().warning("Player " + player + " is on the proxy but not in Redis.");