From c68325c13fdc44afb660ddb335f5f94f5ba32b50 Mon Sep 17 00:00:00 2001 From: taeyeon Date: Fri, 12 Apr 2024 10:11:53 +0900 Subject: [PATCH 1/2] =?UTF-8?q?refactor=20::=20gauth=20=EB=B2=84=EC=A0=84?= =?UTF-8?q?=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle.kts b/build.gradle.kts index 77763d9..edc3a4d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -32,7 +32,7 @@ dependencies { implementation("org.mariadb.jdbc:mariadb-java-client:3.3.3") // GAuth - implementation("com.github.GSM-MSG:GAuth-SDK-Java:v2.0.1") + implementation("com.github.GSM-MSG:GAuth-SDK-Java:v3.0.0") // jwt implementation("io.jsonwebtoken:jjwt-api:0.11.5") From ab954776ff0d978a34859c3134e4ce556d81683b Mon Sep 17 00:00:00 2001 From: taeyeon Date: Fri, 12 Apr 2024 10:13:03 +0900 Subject: [PATCH 2/2] =?UTF-8?q?refactor=20::=20=EB=B2=84=EC=A0=84=EB=B3=80?= =?UTF-8?q?=EA=B2=BD=EC=9C=BC=EB=A1=9C=20=EC=9D=B8=ED=95=9C=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../server/v2/domain/auth/service/impl/SignInServiceImpl.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/java/com/mindway/server/v2/domain/auth/service/impl/SignInServiceImpl.java b/src/main/java/com/mindway/server/v2/domain/auth/service/impl/SignInServiceImpl.java index 3023cb8..b399326 100644 --- a/src/main/java/com/mindway/server/v2/domain/auth/service/impl/SignInServiceImpl.java +++ b/src/main/java/com/mindway/server/v2/domain/auth/service/impl/SignInServiceImpl.java @@ -65,11 +65,8 @@ public TokenResponse execute(SignInRequest signInRequest) throws GAuthException{ } catch (GAuthException e) { throw new GAuthException(e.getCode()); - } catch (IOException e) { - log.info(e.getMessage()); } - return null; } private User saveUser(GAuthUserInfo gAuthUserInfo) {