此方法包含对常量 null 的已知非空值的冗余检查
This method contains a redundant check of a known non-null value against the constant null
javac 1.7.0_79
findbugs 3.0.0
您好,
我正在使用 findbugs 并收到此报告错误:
This method contains a redundant check of a known non-null value against the constant null
题目中的代码是这样的:
mClientConnection = new XMPPTCPConnection(configBuilder.build());
if(mClientConnection == null) {
return false;
}
以上代码检查 mClientConnection 是否包含有效引用。
构造函数包含:
public XMPPTCPConnection(XMPPTCPConnectionConfiguration config) {
super(config);
this.config = config;
}
我想知道如何检查 mClientConnection 是否包含有效引用?
非常感谢您的任何建议,
您从 Findbugs 收到该消息的原因是构造函数 永远不会 return null
。因此,您没有理由对 mClientConnection
进行空检查。如果构造函数确实失败,则永远不会调用使用 mClientConnection
的代码行。
javac 1.7.0_79
findbugs 3.0.0
您好,
我正在使用 findbugs 并收到此报告错误:
This method contains a redundant check of a known non-null value against the constant null
题目中的代码是这样的:
mClientConnection = new XMPPTCPConnection(configBuilder.build());
if(mClientConnection == null) {
return false;
}
以上代码检查 mClientConnection 是否包含有效引用。
构造函数包含:
public XMPPTCPConnection(XMPPTCPConnectionConfiguration config) {
super(config);
this.config = config;
}
我想知道如何检查 mClientConnection 是否包含有效引用?
非常感谢您的任何建议,
您从 Findbugs 收到该消息的原因是构造函数 永远不会 return null
。因此,您没有理由对 mClientConnection
进行空检查。如果构造函数确实失败,则永远不会调用使用 mClientConnection
的代码行。