Skip to content

Commit

Permalink
m
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdullinAM committed Sep 26, 2023
1 parent e5c9c49 commit 28a717e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/org/vorpal/research/kfg/ir/Method.kt
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ class Method : Node {
MethodParameterAnnotation.get(annotationNode, cm)
}

add(Parameter(cm, index, param.name, desc.args[index], Modifiers(param.access), annotations))
add(Parameter(cm, index, param?.name ?: "", desc.args[index], Modifiers(param?.access ?: 0), annotations))
}
}

Expand Down

0 comments on commit 28a717e

Please sign in to comment.