From 2d8ecdf35848495afca2dd118ed6016a0f616d87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicklas=20K=C3=B6rtge?= Date: Mon, 23 Sep 2024 16:33:29 +0200 Subject: [PATCH] call report method (#151) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nicklas Körtge --- .../com/ibm/plugin/rules/detection/PythonBaseDetectionRule.java | 1 + 1 file changed, 1 insertion(+) diff --git a/python/src/main/java/com/ibm/plugin/rules/detection/PythonBaseDetectionRule.java b/python/src/main/java/com/ibm/plugin/rules/detection/PythonBaseDetectionRule.java index ef26b59f..771a09b8 100644 --- a/python/src/main/java/com/ibm/plugin/rules/detection/PythonBaseDetectionRule.java +++ b/python/src/main/java/com/ibm/plugin/rules/detection/PythonBaseDetectionRule.java @@ -79,6 +79,7 @@ public void visitCallExpression(@Nonnull CallExpression tree) { public void update(@Nonnull Finding finding) { List nodes = pythonTranslationProcess.initiate(finding.detectionStore()); PythonAggregator.addNodes(nodes); + this.report(finding.detectionStore(), this); } @Override