Update ApiScenarioReportService.java

格式化代码
This commit is contained in:
John Bro 2022-06-21 15:18:33 +08:00
parent 7c04963b8f
commit b08015c711
1 changed files with 10 additions and 5 deletions

View File

@ -997,13 +997,18 @@ public class ApiScenarioReportService {
return apiScenarioReportStructureService.selectReportContent(stepId);
}
public void cleanUpUiReportImg(List<String> ids){
if(ids != null && CollectionUtils.isNotEmpty(ids)){
for(String id : ids){
if(FileUtil.deleteDir(new File(FileUtils.UI_IMAGE_DIR + "/" + id))){
LogUtil.info("删除 UI 报告截图成功,报告 ID 为 " + id);
public void cleanUpUiReportImg(List<String> ids) {
try {
if (ids != null && CollectionUtils.isNotEmpty(ids)) {
for (String id : ids) {
if (FileUtil.deleteDir(new File(FileUtils.UI_IMAGE_DIR + "/" + id))) {
LogUtil.info("删除 UI 报告截图成功,报告 ID 为 " + id);
}
}
}
} catch (Exception e) {
LogUtil.error(e.getMessage(), e);
MSException.throwException(e.getMessage());
}
}
}