Skip to content

Commit

Permalink
refactor: use newer version of LZ4 library
Browse files Browse the repository at this point in the history
ING-3131
  • Loading branch information
florianesser committed Oct 13, 2022
1 parent 885b248 commit 8daafd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/json/tools/Compress.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static String decompressB64(String iStr){
int primaryLength = aInputData.length*5;
byte[] aOutputData = new byte[primaryLength];

LZ4UnknownSizeDecompressor decompressor = factory.unknwonSizeDecompressor();
LZ4UnknownSizeDecompressor decompressor = factory.unknownSizeDecompressor();
int decompressed = decompressor.decompress(aInputData,
0, aInputData.length,
aOutputData, 0);
Expand Down

0 comments on commit 8daafd2

Please sign in to comment.