Skip to content

Commit

Permalink
remove duplicate outBuffer creation
Browse files Browse the repository at this point in the history
  • Loading branch information
yash-puligundla committed Oct 19, 2023
1 parent 3f84b2a commit 43145d4
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ public ByteBuffer uncompress(final ByteBuffer inBuffer, int outSize) {
inBuffer.get(data, 0, outSize);
outBuffer = ByteBuffer.wrap(data);
} else {
outBuffer = ByteBuffer.allocate(outSize);
if (outSize != 0) {
switch (ransNx16Params.getOrder()) {
case ZERO:
Expand Down

0 comments on commit 43145d4

Please sign in to comment.