Skip to content

Commit

Permalink
去除多余的逗号
Browse files Browse the repository at this point in the history
  • Loading branch information
entropy-cloud committed Dec 9, 2023
1 parent 92fc358 commit e0f848c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
@${method.mutation?'BizMutation':'BizQuery'}
@Override
public CompletionStage<${method.simpleResponseMessage == 'void' ? 'Void' : method.simpleResponseMessage}> ${method.name}Async(
${method.voidRequest ? '': '@RequestBean '+method.simpleRequestMessage + ' request,'}, FieldSelectionBean selection, IServiceContext ctx){
${method.voidRequest ? '': '@RequestBean '+method.simpleRequestMessage + ' request,'} FieldSelectionBean selection, IServiceContext ctx){
return FutureHelper.success(null);
}
]]></otherwise>
Expand Down

0 comments on commit e0f848c

Please sign in to comment.