Browse Source

REPORT-73283【设计器环境监测】个别jar异常时,不会触发自动检测

改一个国际化信息
feature/x
Harrison 2 years ago
parent
commit
d828819b5f
  1. 2
      designer-base/src/main/java/com/fr/env/detect/impl/JarInconsistentDetector.java

2
designer-base/src/main/java/com/fr/env/detect/impl/JarInconsistentDetector.java vendored

@ -136,7 +136,7 @@ public class JarInconsistentDetector extends AbstractExceptionDetector {
return DetectorResult.exception(type(),
new ExceptionTips(new Message.Simple(tipsMessage)),
new ExceptionSolution(new Message.Link(Toolkit.i18nText(type().getSolutionLocale()), DetectorConstants.JAR_HELP_LINK), null),
ExceptionLog.create(type().getLogLocale() + message));
ExceptionLog.create(Toolkit.i18nText(type().getLogLocale()) + message));
}
private Map<String, String> groupBy(List<BuildInfo> localInfos) {

Loading…
Cancel
Save