RFR: 8266796: Clean up the unnecessary code in the method UnsharedNameTable#fromUtf

Guoxiong Li gli at openjdk.java.net
Mon May 10 13:34:58 UTC 2021


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

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

Commit messages:
 - 8266796: Clean up the unnecessary code in the method UnsharedNameTable#fromUtf

Changes: https://git.openjdk.java.net/jdk/pull/3942/files
 Webrev: https://webrevs.openjdk.java.net/?repo=jdk&pr=3942&range=00
  Issue: https://bugs.openjdk.java.net/browse/JDK-8266796
  Stats: 5 lines in 1 file changed: 0 ins; 4 del; 1 mod
  Patch: https://git.openjdk.java.net/jdk/pull/3942.diff
  Fetch: git fetch https://git.openjdk.java.net/jdk pull/3942/head:pull/3942

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


More information about the compiler-dev mailing list