Skip to content

Commit

Permalink
remove todo
Browse files Browse the repository at this point in the history
  • Loading branch information
HCJ0001 committed Feb 26, 2020
1 parent b09ce96 commit f6287ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
5 changes: 2 additions & 3 deletions ams/src/main/java/press/whcj/ams/service/ApiGroupService.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@
import java.util.List;

/**
* cjTodo 2019/12/6 16:14
* @author [email protected]
* @since 2019/12/31
*/

public interface ApiGroupService {
List<ApiGroupVo> findList(ApiGroup apiGroupDto);
List<ApiGroupVo> findList(ApiGroup apiGroupDto);

String save(ApiGroup apiGroupDto, UserVo operator);
String save(ApiGroup apiGroupDto, UserVo operator);

void delete(ApiGroup apiGroupDto);
}
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ public String save(ApiDto apiDto, UserVo operator) {
if (isUpdate) {
api = mongoTemplate.findById(apiDto.getId(), Api.class);
FastUtils.checkNull(api);
// cjTodo 2019/12/31 保存历史
Objects.requireNonNull(api).setUpdate(null);
} else {
api = new Api();
Expand Down

0 comments on commit f6287ff

Please sign in to comment.