Skip to content

Commit

Permalink
8322734: A redundant return in PKCS5Padding
Browse files Browse the repository at this point in the history
  • Loading branch information
johnshajiang committed Dec 25, 2023
1 parent 4fc6b0f commit 4c402ac
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ public void padWithLen(byte[] in, int off, int len)

byte paddingOctet = (byte) (len & 0xff);
Arrays.fill(in, off, idx, paddingOctet);
return;
}

/**
Expand Down

0 comments on commit 4c402ac

Please sign in to comment.