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

@ -998,6 +998,7 @@ public class ApiScenarioReportService {
} }
public void cleanUpUiReportImg(List<String> ids) { public void cleanUpUiReportImg(List<String> ids) {
try {
if (ids != null && CollectionUtils.isNotEmpty(ids)) { if (ids != null && CollectionUtils.isNotEmpty(ids)) {
for (String id : ids) { for (String id : ids) {
if (FileUtil.deleteDir(new File(FileUtils.UI_IMAGE_DIR + "/" + id))) { if (FileUtil.deleteDir(new File(FileUtils.UI_IMAGE_DIR + "/" + id))) {
@ -1005,5 +1006,9 @@ public class ApiScenarioReportService {
} }
} }
} }
} catch (Exception e) {
LogUtil.error(e.getMessage(), e);
MSException.throwException(e.getMessage());
}
} }
} }