Skip to content

Commit

Permalink
kotlin2cpg: fix typo in signature of single call (#2786)
Browse files Browse the repository at this point in the history
  • Loading branch information
ursachec committed May 31, 2023
1 parent b20411e commit 8a24e62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1698,7 +1698,7 @@ trait KtPsiToAst {

val assignmentNode = operatorCallNode(Operators.assignment, expr.getText, None, line(expr), column(expr))
val assignmentCallAst = callAst(assignmentNode, List(identifierAst) ++ List(rhsAst))
val initSignature = s"<${TypeConstants.void}>()"
val initSignature = s"${TypeConstants.void}()"
val initFullName = s"$typeFullName${TypeConstants.initPrefix}:$initSignature"
val initCallNode = callNode(
expr,
Expand Down

0 comments on commit 8a24e62

Please sign in to comment.