From 96ef860c70ff73ae0564d179a36155819716980c Mon Sep 17 00:00:00 2001 From: Gravita Date: Thu, 20 May 2021 02:47:22 +0700 Subject: [PATCH] [FIX] MySQLCoreProvider --- .../pro/gravit/launchserver/auth/core/MySQLCoreProvider.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/LaunchServer/src/main/java/pro/gravit/launchserver/auth/core/MySQLCoreProvider.java b/LaunchServer/src/main/java/pro/gravit/launchserver/auth/core/MySQLCoreProvider.java index 58a2178c..014186e0 100644 --- a/LaunchServer/src/main/java/pro/gravit/launchserver/auth/core/MySQLCoreProvider.java +++ b/LaunchServer/src/main/java/pro/gravit/launchserver/auth/core/MySQLCoreProvider.java @@ -8,8 +8,7 @@ import pro.gravit.launchserver.LaunchServer; import pro.gravit.launchserver.auth.AuthException; import pro.gravit.launchserver.auth.MySQLSourceConfig; -import pro.gravit.launchserver.auth.handler.CachedAuthHandler; -import pro.gravit.launchserver.auth.password.DigestPasswordVerifier; +import pro.gravit.launchserver.auth.password.PasswordVerifier; import pro.gravit.launchserver.socket.response.auth.AuthResponse; import java.io.IOException; @@ -29,7 +28,7 @@ public class MySQLCoreProvider extends AuthCoreProvider { public String passwordColumn; public String serverIDColumn; public String table; - public DigestPasswordVerifier passwordVerifier; + public PasswordVerifier passwordVerifier; // Prepared SQL queries private transient String queryByUUIDSQL;