我使用 facebook infer 来检测我的 Android 项目中的错误。它发现一些错误但不是错误。
try {
...
AppInfo app = JsonUtil.parseObject(resFileContent , AppInfo.class);
app.setAppPackagePath(simpleInfoFile.getParent());
return app;
} catch (Exception e) {
e.printStackTrace();
return null;
}
推断报告错误
132: error: NULL_DEREFERENCE
object app last assigned on line 130 could be null and is dereferenced at line 132
130. AppInfo app = JsonUtil.parseObject(resFileContent , AppInfo.class);
131.
132. > app.setAppPackagePath(simpleInfoFile.getParent());
133. return app;
134. } catch (Exception e) {
135.
NullPointerException 将被 try...catch... 捕获,因此它不是错误。如何告诉 infer 不报错或忽略这一行的检查?