Minor cleanup

This commit is contained in:
Erik C. Thauvin 2022-12-31 10:06:41 -08:00
parent c91770339d
commit ecbefa231e

View file

@ -90,7 +90,6 @@ object UrlEncoder {
// the remaining characters divided by the length of the encoding format %xx, is the maximum number // the remaining characters divided by the length of the encoding format %xx, is the maximum number
// of bytes that can be extracted // of bytes that can be extracted
bytesBuffer = ByteArray((length - i) / 3) bytesBuffer = ByteArray((length - i) / 3)
bytesPos = 0
} }
i++ i++
require(length >= i + 2) { "Illegal escape sequence" } require(length >= i + 2) { "Illegal escape sequence" }