8337245: Fix wrong comment of StringConcatHelper

Reviewed-by: phh, redestad
This commit is contained in:
Shaojin Wen 2024-07-27 22:54:47 +00:00 committed by Claes Redestad
parent 034297a6bd
commit 2fbdbacad7

@ -185,7 +185,7 @@ final class StringConcatHelper {
* @param indexCoder final char index in the buffer, along with coder packed
* into higher bits.
* @param buf buffer to append to
* @param value boolean value to encode
* @param value char value to encode
* @param prefix a constant to prepend before value
* @return updated index (coder value retained)
*/
@ -211,7 +211,7 @@ final class StringConcatHelper {
* @param indexCoder final char index in the buffer, along with coder packed
* into higher bits.
* @param buf buffer to append to
* @param value boolean value to encode
* @param value int value to encode
* @param prefix a constant to prepend before value
* @return updated index (coder value retained)
*/
@ -237,7 +237,7 @@ final class StringConcatHelper {
* @param indexCoder final char index in the buffer, along with coder packed
* into higher bits.
* @param buf buffer to append to
* @param value boolean value to encode
* @param value long value to encode
* @param prefix a constant to prepend before value
* @return updated index (coder value retained)
*/