When working on a non-z390 project in Eclipse, noticed warning message "Unlikely argument type for equals(): char seems to be unrelated to String" for z390 module tz390.java. Problem line is
else if (override.substring(0,i).equals(mask_char)) // #495
Should be
else if (override.substring(0,i).equals(String.valueOf(mask_char))) // #495
When working on a non-z390 project in Eclipse, noticed warning message "Unlikely argument type for equals(): char seems to be unrelated to String" for z390 module tz390.java. Problem line is
else if (override.substring(0,i).equals(mask_char)) // #495
Should be
else if (override.substring(0,i).equals(String.valueOf(mask_char))) // #495