Skip to content

Commit

Permalink
Missing final
Browse files Browse the repository at this point in the history
  • Loading branch information
lucassaldanha committed Dec 9, 2024
1 parent 0bd91d2 commit 1e55fcc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
public class SnappyBlockCompressor {

public Bytes uncompress(
final Bytes compressedData, final SszLengthBounds lengthBounds, long maxBytesLength)
final Bytes compressedData, final SszLengthBounds lengthBounds, final long maxBytesLength)
throws DecodingException {
try {
final int uncompressedLength = Snappy.uncompressedLength(compressedData.toArrayUnsafe());
Expand Down

0 comments on commit 1e55fcc

Please sign in to comment.