|
@@ -1598,7 +1598,8 @@ public class SimulationProjectServiceImpl implements SimulationProjectService {
|
|
|
}
|
|
|
return algorithmList;
|
|
|
} catch (Exception e) {
|
|
|
- throw new RuntimeException("第三方算法已被删除。");
|
|
|
+ log.error("获取第三方算法平台的算法信息失败。", e);
|
|
|
+ throw new RuntimeException("获取第三方算法平台的算法信息失败。");
|
|
|
}
|
|
|
|
|
|
}
|
|
@@ -2146,10 +2147,10 @@ public class SimulationProjectServiceImpl implements SimulationProjectService {
|
|
|
String timeActual = "0";
|
|
|
String timeCorrection = "0";
|
|
|
|
|
|
- if (StringUtil.isNotEmpty(sp.getTimeActual())){
|
|
|
+ if (StringUtil.isNotEmpty(sp.getTimeActual())) {
|
|
|
timeActual = sp.getTimeActual();
|
|
|
}
|
|
|
- if (StringUtil.isNotEmpty(sp.getTimeCorrection())){
|
|
|
+ if (StringUtil.isNotEmpty(sp.getTimeCorrection())) {
|
|
|
timeCorrection = sp.getTimeCorrection();
|
|
|
}
|
|
|
|