소스 검색

Merge branch 'home' of https://git.zipcode.rocks/jaejoson/JhipsterGroupProject-Client into home

Jonathan Hinds 5 년 전
부모
커밋
fd9bfc6f76
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0
    1
      src/main/java/rocks/zipcode/io/web/rest/AccountResource.java

+ 0
- 1
src/main/java/rocks/zipcode/io/web/rest/AccountResource.java 파일 보기

130
         if (!user.isPresent()) {
130
         if (!user.isPresent()) {
131
             throw new InternalServerErrorException("User could not be found");
131
             throw new InternalServerErrorException("User could not be found");
132
         }
132
         }
133
-
134
         userService.updateUser(userDTO.getFirstName(), userDTO.getLastName(), userDTO.getEmail(), userDTO.getLangKey(), userDTO.getImageUrl());
133
         userService.updateUser(userDTO.getFirstName(), userDTO.getLastName(), userDTO.getEmail(), userDTO.getLangKey(), userDTO.getImageUrl());
135
     }
134
     }
136
 
135