You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This method does line.getBytes().length > MAX_LINE_LENGTH and section.getBytes().length > MAX_SECTION_LENGTH. Ignoring that getBytes() relies on platform encoding. If the encoding is not UTF-8, the length in bytes might be calculated incorrectly and the output doesn't conform to the manifest spec anymore.
The text was updated successfully, but these errors were encountered:
This method does
line.getBytes().length > MAX_LINE_LENGTH
andsection.getBytes().length > MAX_SECTION_LENGTH
. Ignoring thatgetBytes()
relies on platform encoding. If the encoding is not UTF-8, the length in bytes might be calculated incorrectly and the output doesn't conform to the manifest spec anymore.The text was updated successfully, but these errors were encountered: