On Wed, 6 Jan 2021 05:17:35 GMT, Xue-Lei Andrew Fan <[email protected]> wrote:

> In the SunJSSE provider implementation, there are a few local variables that 
> is not necessary. For example: 
> 
>     byte[] finished = prfKey.getEncoded(); 
>     return finished; 
> 
> could be simplified as: 
> 
>      return prfKey.getEncoded();
> 
> Code clean up, no new regression test.

Marked as reviewed by mullan (Reviewer).

-------------

PR: https://git.openjdk.java.net/jdk/pull/1955

Reply via email to