处理无效条件(在声纳中更改此条件,使其不会始终评估为" false")

时间:2016-07-22 07:07:04

标签: java sonarqube

public boolean validateEmployeeRequestForm(String empCode) {
           if ( null == empCode ) {
                return false;
            }
           return true;
    }

此处在第二行if ( null == empCode ),它在下面给我Sonar例外。

  

更改此条件,使其不会始终评估为" false"。

如何处理?

1 个答案:

答案 0 :(得分:1)

public boolean validateEmployeeRequestForm(String empCode) {
       return empCode != null;
}