过滤掉 designer
@ -65,6 +65,8 @@ public class JarLackDetector extends AbstractExceptionDetector {
lackInfos = localInfos.stream()
.filter(this::isExistInfo)
// 不是设计器的 JAR
.filter((e) -> !DetectorUtil.isDesignerJar(e))
.filter(remoteNotContains)
.collect(Collectors.toList());