Fixed compile issue that appeared all of a sudden?

This commit is contained in:
Rsl1122 2018-08-05 22:06:41 +03:00
parent 1456d78bd4
commit eb88f85467

View File

@ -11,7 +11,6 @@ import com.djrapitops.plan.system.processing.CriticalRunnable;
import com.djrapitops.plan.system.settings.Settings;
import com.djrapitops.plugin.api.utility.log.Log;
import java.io.UnsupportedEncodingException;
import java.net.InetAddress;
import java.security.NoSuchAlgorithmException;
import java.util.UUID;
@ -40,7 +39,7 @@ public class IPUpdateProcessor implements CriticalRunnable {
try {
GeoInfo geoInfo = new GeoInfo(ip, country, time);
Database.getActive().save().geoInfo(uuid, geoInfo);
} catch (UnsupportedEncodingException | NoSuchAlgorithmException e) {
} catch (NoSuchAlgorithmException e) {
Log.toLog(this.getClass(), e);
}
}