Skip to content

Commit 062024b

Browse files
authored
Merge pull request #14232 from smowton/smowton/fix/autoformat
Fix formatting mistake
2 parents 24dc09e + e62fcf9 commit 062024b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

java/ql/lib/semmle/code/java/Expr.qll

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1247,7 +1247,8 @@ class ClassInstanceExpr extends Expr, ConstructorCall, @classinstancexpr {
12471247
override string toString() {
12481248
result = "new " + this.getConstructor().getName() + "(...)"
12491249
or
1250-
not exists(this.getConstructor()) and result = "<ClassInstanceExpr that calls a missing constructor>"
1250+
not exists(this.getConstructor()) and
1251+
result = "<ClassInstanceExpr that calls a missing constructor>"
12511252
}
12521253

12531254
override string getAPrimaryQlClass() { result = "ClassInstanceExpr" }

0 commit comments

Comments
 (0)