From e62fcf9a45f6309cc0bdcf36c3314926b4b6bc2b Mon Sep 17 00:00:00 2001 From: Chris Smowton Date: Fri, 15 Sep 2023 12:37:34 +0100 Subject: [PATCH] Fix formatting mistake --- java/ql/lib/semmle/code/java/Expr.qll | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/java/ql/lib/semmle/code/java/Expr.qll b/java/ql/lib/semmle/code/java/Expr.qll index 9179801d743..785d5a72c0b 100644 --- a/java/ql/lib/semmle/code/java/Expr.qll +++ b/java/ql/lib/semmle/code/java/Expr.qll @@ -1247,7 +1247,8 @@ class ClassInstanceExpr extends Expr, ConstructorCall, @classinstancexpr { override string toString() { result = "new " + this.getConstructor().getName() + "(...)" or - not exists(this.getConstructor()) and result = "" + not exists(this.getConstructor()) and + result = "" } override string getAPrimaryQlClass() { result = "ClassInstanceExpr" }