[FIX] MySQLCoreProvider

This commit is contained in:
Gravita 2021-05-20 02:47:22 +07:00
parent ab7565e7d1
commit 96ef860c70

View file

@ -8,8 +8,7 @@
import pro.gravit.launchserver.LaunchServer; import pro.gravit.launchserver.LaunchServer;
import pro.gravit.launchserver.auth.AuthException; import pro.gravit.launchserver.auth.AuthException;
import pro.gravit.launchserver.auth.MySQLSourceConfig; import pro.gravit.launchserver.auth.MySQLSourceConfig;
import pro.gravit.launchserver.auth.handler.CachedAuthHandler; import pro.gravit.launchserver.auth.password.PasswordVerifier;
import pro.gravit.launchserver.auth.password.DigestPasswordVerifier;
import pro.gravit.launchserver.socket.response.auth.AuthResponse; import pro.gravit.launchserver.socket.response.auth.AuthResponse;
import java.io.IOException; import java.io.IOException;
@ -29,7 +28,7 @@ public class MySQLCoreProvider extends AuthCoreProvider {
public String passwordColumn; public String passwordColumn;
public String serverIDColumn; public String serverIDColumn;
public String table; public String table;
public DigestPasswordVerifier passwordVerifier; public PasswordVerifier passwordVerifier;
// Prepared SQL queries // Prepared SQL queries
private transient String queryByUUIDSQL; private transient String queryByUUIDSQL;