Skip to content

Commit

Permalink
Remove extra semicolon from DefaultDictionaryAcceptor (#475)
Browse files Browse the repository at this point in the history
  • Loading branch information
BrentDouglasB1 committed Mar 27, 2023
1 parent 9e7167d commit 76ddfdc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private void generateDefaultAcceptorCallback(final Writer acceptorOutput, final
{
acceptorOutput.append(String.format(
" @Override\n" +
" public void on%1$s(final %2$s decoder) {};\n\n",
" public void on%1$s(final %2$s decoder) {}\n\n",
message.name(),
decoderClassName(message)
));
Expand Down

0 comments on commit 76ddfdc

Please sign in to comment.