NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE
FindBugs 正在抛出以下方法的 return 语句。尝试为每个值放置空检查,但我仍然无法修复。NP_NULL_ON_SOME_PATH_FROM_RETURN_VALUE
public String toString() {
String filter = StringUtils.isBlank(this.filter) ? "NONE" : this.filter;
String res = "";
if (method != null && method.getName() != null){
res = method.getName();
}
return res;
}