누락 코드 수정
This commit is contained in:
@@ -52,7 +52,7 @@ public class BapSysinfoService extends BapBaseService {
|
||||
public void update(HashMap<String, Object> paramMap) throws Exception {
|
||||
String password = (String)paramMap.get("userPassword");
|
||||
|
||||
if(password == null && password.isEmpty()) {
|
||||
if(password == null || password.isEmpty()) {
|
||||
password = " ";
|
||||
}
|
||||
|
||||
@@ -63,7 +63,7 @@ public class BapSysinfoService extends BapBaseService {
|
||||
public void insert(HashMap<String, Object> paramMap) throws Exception {
|
||||
String password = (String)paramMap.get("userPassword");
|
||||
|
||||
if(password == null && password.isEmpty()) {
|
||||
if(password == null || password.isEmpty()) {
|
||||
password = " ";
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user