facebook可以推断忽略错误吗?

时间:2016-08-11 02:09:36

标签: android facebook facebook-infer

我使用facebook推断来检测我的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 ...捕获,因此它不是错误。 如何判断不报告错误或忽略此行中的检查?

0 个答案:

没有答案