Re: RFR: 8322734: A redundant return in method padWithLen

2023-12-26 Thread John Jiang
On Mon, 25 Dec 2023 09:42:36 GMT, Jie Fu wrote: >> It looks the `return`s in the methods `PKCS5Padding::padWithLen` and >> `ISO10126Padding::padWithLen` are redundant. > > I see the same case in ISO10126Padding.java. > Shall we also remove it? @DamonFool Thanks for your review! -

Re: RFR: 8322734: A redundant return in method padWithLen [v2]

2023-12-25 Thread Jie Fu
On Mon, 25 Dec 2023 10:54:54 GMT, John Jiang wrote: >> It looks the `return`s in the methods `PKCS5Padding::padWithLen` and >> `ISO10126Padding::padWithLen` are redundant. > > John Jiang has updated the pull request incrementally with one additional > commit since the last revision: > > Remo

Re: RFR: 8322734: A redundant return in method padWithLen [v2]

2023-12-25 Thread John Jiang
> It looks the `return`s in the methods `PKCS5Padding::padWithLen` and > `ISO10126Padding::padWithLen` are redundant. John Jiang has updated the pull request incrementally with one additional commit since the last revision: Remove return from ISO10126Padding::padWithLen - Change