即使对象是TypeSafe对象,Findbugs抛出错误BC_UNCONFIRMED_CAST_OF_RETURN_VALUE

时间:2018-05-08 09:26:26

标签: java maven

我正面临着maven findbugs插件的一个不寻常的问题。 它报告了以下代码的错误BC_UNCONFIRMED_CAST_OF_RETURN_VALUE),我认为它不应该抛出。

 public void call(ResourceResponse<Document> t) {

    Document resource = t.getResource(); --> this line is throwing the error.
    callback.completion(resource, null);
}

如果我在这里遗漏了一些东西,请告诉我。

0 个答案:

没有答案