On Thu, 7 Jan 2021 18:30:27 GMT, Xue-Lei Andrew Fan <[email protected]> wrote:
> In the SunJSSE provider implementation, there are a few cases that the > assigned value is never used. For example: > int i = 0; > i = Byte.toUnsignedInt(buf.get()); > could be simplified as > ` int i = Byte.toUnsignedInt(buf.get());` > > Code cleanup, no new regression test. This pull request has now been integrated. Changeset: b72de3c5 Author: Xue-Lei Andrew Fan <[email protected]> URL: https://git.openjdk.java.net/jdk/commit/b72de3c5 Stats: 95 lines in 18 files changed: 16 ins; 25 del; 54 mod 8259385: Cleanup unused assignment Reviewed-by: attila ------------- PR: https://git.openjdk.java.net/jdk/pull/1984
