Update ProjectService.java

代码格式化
This commit is contained in:
John Bro 2022-06-21 15:30:50 +08:00
parent 77a56b4f9c
commit 7ee21f06ff
1 changed files with 27 additions and 22 deletions

View File

@ -1029,6 +1029,7 @@ public class ProjectService {
// 删除 UI 报告产生的截图
public void cleanUpUiReportImg() {
try {
// 属于定时任务删除调试报告情况
// 获取昨天的当前时间
Date backupTime = org.apache.commons.lang3.time.DateUtils.addDays(new Date(), -1);
@ -1054,6 +1055,10 @@ public class ProjectService {
apiScenarioReportMapper.deleteByPrimaryKey(apiScenarioReport.getId());
}
}
} catch (Exception e) {
LogUtil.error(e.getMessage(), e);
MSException.throwException(e.getMessage());
}
}
public void checkProjectIsRepeatable(String projectId) {