수정정
This commit is contained in:
@@ -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));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user