수정정

This commit is contained in:
2025-08-30 11:47:03 +09:00
parent 26d0247810
commit 8197ec8782

View File

@@ -90,7 +90,7 @@ public class LoginController {
//로그인 처리
Map loginResultMap = loginService.loginPwdCheck(request, paramMap);
boolean loginResult = new Boolean(CommonUtils.checkNull(loginResultMap.get(Constants.LOGIN_RESULT))).booleanValue();
boolean loginResult = Boolean.parseBoolean(CommonUtils.checkNull(loginResultMap.get(Constants.LOGIN_RESULT)));
String errorReason = CommonUtils.checkNull(loginResultMap.get(Constants.ERROR_REASON_KEY));