Skip to content

Commit

Permalink
Improve client tool constant generation code
Browse files Browse the repository at this point in the history
  • Loading branch information
rashmibharambe authored Oct 8, 2023
1 parent da01339 commit 1116319
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ private static VariableDeclarationNode getInputDeclarationStatement(Method metho
method.getInputType() + " ")),
getCaptureBindingPatternNode(getRequestName(method.getMethodName())));
ExpressionNode node = null;
if(INPUT_TYPE_EXPR_NODES.containsKey(method.getInputType())) {
if (INPUT_TYPE_EXPR_NODES.containsKey(method.getInputType())) {
node = INPUT_TYPE_EXPR_NODES.get(method.getInputType());
} else if (msgMap.containsKey(method.getInputType())) {
Message msg = msgMap.get(method.getInputType());
Expand Down

0 comments on commit 1116319

Please sign in to comment.