Skip to content

Commit 3b3db36

Browse files
committed
MOSU-308 refactor: break 추가
1 parent 3b3bc43 commit 3b3db36

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/main/java/life/mosu/mosuserver/application/oauth/OAuthUserPersistenceProcessor.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,12 @@ public UserJpaEntity process(final OAuthUserInfo info) {
2828
if (existingUser.isPendingUser()) {
2929
throw new OAuthException("DUPLICATE");
3030
}
31+
break;
3132
case KAKAO:
3233
if (existingUser.isPendingUser()) {
3334
throw new OAuthException("KAKAO_DUPLICATE");
3435
}
36+
break;
3537
}
3638
existingUser.updateOAuthUser(
3739
info.gender(),

0 commit comments

Comments
 (0)