Integrated: 8266796: Clean up the unnecessary code in the method UnsharedNameTable#fromUtf
Guoxiong Li
gli at openjdk.java.net
Mon May 10 14:30:59 UTC 2021
On Mon, 10 May 2021 03:31:09 GMT, Guoxiong Li <gli at openjdk.org> wrote:
> Hi all,
>
> This little patch cleans up the redundant code. Please see the code below.
>
>
> while (element != null) {
> if (element == null) {
> break;
> }
>
>
> The `while (element != null)` has already checked the `element`. So the `if (element == null)` is redundant and unnecessary.
>
> Thank you for taking the time to review.
>
> Best Regards,
> -- Guoxiong
This pull request has now been integrated.
Changeset: 5d761fcf
Author: Guoxiong Li <gli at openjdk.org>
Committer: Maurizio Cimadamore <mcimadamore at openjdk.org>
URL: https://git.openjdk.java.net/jdk/commit/5d761fcffd6eea1c5be35d2ddec1479eccb85750
Stats: 5 lines in 1 file changed: 0 ins; 4 del; 1 mod
8266796: Clean up the unnecessary code in the method UnsharedNameTable#fromUtf
Reviewed-by: mcimadamore
-------------
PR: https://git.openjdk.java.net/jdk/pull/3942
More information about the compiler-dev
mailing list