Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct MessageUnpacker javadoc #764

Merged
merged 1 commit into from
Sep 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ private static int utf8MultibyteCharacterSize(byte firstByte)
}

/**
* Returns true true if this unpacker has more elements.
* Returns true if this unpacker has more elements.
* When this returns true, subsequent call to {@link #getNextFormat()} returns an
* MessageFormat instance. If false, next {@link #getNextFormat()} call will throw an MessageInsufficientBufferException.
*
Expand Down Expand Up @@ -759,7 +759,7 @@ public void unpackNil()
/**
* Peeks a Nil byte and reads it if next byte is a nil value.
*
* The difference from {@link unpackNil} is that unpackNil throws an exception if the next byte is not nil value
* The difference from {@link #unpackNil()} is that unpackNil throws an exception if the next byte is not nil value
* while this tryUnpackNil method returns false without changing position.
*
* @return true if a nil value is read
Expand Down
Loading