Skip to content

Commit

Permalink
fixing a typo in testing code
Browse files Browse the repository at this point in the history
  • Loading branch information
lucianoviana committed Sep 25, 2024
1 parent 346ecdd commit 3b6712d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ private <T extends MessageDecoderFlyweight> T readInternal(final T messageDecode
final int readHeader = readSocket();
if (readHeader != headerLength)
{
throw new IllegalStateException("readHeader=" + readHeader + ",headerLength" + headerLength);
throw new IllegalStateException("readHeader=" + readHeader + ",headerLength=" + headerLength);
}

final int totalLength = readSofh(unsafeReadBuffer, 0, BINARY_ENTRYPOINT_TYPE);
Expand Down

0 comments on commit 3b6712d

Please sign in to comment.