Format with google-java-format

This commit is contained in:
Rohit Singh 2024-02-27 15:29:56 +00:00
parent f88c9ad68c
commit b254c4625d

View File

@ -175,7 +175,7 @@ import java.io.IOException;
// To align RIFF chunks to certain boundaries the RIFF specification includes a JUNK chunk. // To align RIFF chunks to certain boundaries the RIFF specification includes a JUNK chunk.
// Its contents are to be skipped when reading. // Its contents are to be skipped when reading.
if (chunkHeader.size % 2 != 0) { if (chunkHeader.size % 2 != 0) {
bytesToSkip ++; // padding present if size is odd, skip it. bytesToSkip++; // padding present if size is odd, skip it.
} }
if (bytesToSkip > Integer.MAX_VALUE) { if (bytesToSkip > Integer.MAX_VALUE) {
throw ParserException.createForUnsupportedContainerFeature( throw ParserException.createForUnsupportedContainerFeature(