Commit 171ae5920ff2e58a12c01b06904a6baa29d8b9fd
1 parent
742ecbb860
Exists in
master
and in
1 other branch
bug fix
Showing 1 changed file with 1 additions and 3 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/UsersController.java
View file @
171ae59
... | ... | @@ -193,9 +193,7 @@ |
193 | 193 | user.setDepartmentses(departmentsService.getDepartments(user.getDeptId())); |
194 | 194 | |
195 | 195 | user.setPwd(StringUtils.isEmpty(user.getPwd())?user.getPwd():user.getPwd().replaceAll(".","*")); |
196 | - if(StringUtils.isNotBlank(user.getPwd())) { | |
197 | - user.setPwd(user.getPwd().replaceAll(".","*")); | |
198 | - } | |
196 | + | |
199 | 197 | } |
200 | 198 | |
201 | 199 | FrontEndResult frontEndResult = new FrontEndResult(); |