From 8cbd251beb00a8c0bf1207334a318bca3497dd0e Mon Sep 17 00:00:00 2001 From: Harrison Date: Fri, 10 Jun 2022 15:36:18 +0800 Subject: [PATCH] =?UTF-8?q?=20REPORT-73312=20=E3=80=90=E8=AE=BE=E8=AE=A1?= =?UTF-8?q?=E5=99=A8=E7=8E=AF=E5=A2=83=E7=9B=91=E6=B5=8B=E3=80=91=E8=BF=9C?= =?UTF-8?q?=E7=A8=8B=E5=88=87=E6=8D=A2=E6=97=B6=EF=BC=8Cfine-report-design?= =?UTF-8?q?er-11.0=E4=B8=80=E5=AE=9A=E4=BC=9A=E8=A7=A6=E5=8F=91=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E4=B8=8D=E4=B8=80=E8=87=B4=E7=9A=84=E6=A3=80=E6=B5=8B?= =?UTF-8?q?=20=20=E8=BF=87=E6=BB=A4=E6=8E=89=20designer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/fr/env/detect/impl/JarLackDetector.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/designer-base/src/main/java/com/fr/env/detect/impl/JarLackDetector.java b/designer-base/src/main/java/com/fr/env/detect/impl/JarLackDetector.java index a769921b0a..82b9062702 100644 --- a/designer-base/src/main/java/com/fr/env/detect/impl/JarLackDetector.java +++ b/designer-base/src/main/java/com/fr/env/detect/impl/JarLackDetector.java @@ -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());