Skip to content

Commit

Permalink
Merge branch 'GP-0_ryanmkurtz_PR-7213_kaibolay_crc32-hex'
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmkurtz committed Nov 22, 2024
2 parents 9a4da4e + 3b4d4f9 commit 2333ab6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Expand Down Expand Up @@ -127,7 +127,7 @@ public String toString() {
buff.append("Length: 0x" + Integer.toHexString(length) + "\n");
buff.append("Chunk ID: " + getIDString() + "\n");
buff.append("Chunk Data:" + new String(data) + "\n");
buff.append("CRC32: 0x" + crc32 + "\n");
buff.append("CRC32: 0x" + Integer.toHexString(crc32) + "\n");

return buff.toString();
}
Expand Down

0 comments on commit 2333ab6

Please sign in to comment.