我試圖消除假陽性DLS_DEAD_LOCAL_STOREDLS_DEAD_LOCAL_STORE SuppressWarnings FindBugs的假陽性
這是我迄今爲止嘗試:
@SuppressWarnings("DLS_DEAD_LOCAL_STORE")
@edu.umd.cs.findbugs.annotations.SuppressWarnings("DLS_DEAD_LOCAL_STORE")
(基於SuppressWarnings not working on FindBugs)
@edu.umd.cs.findbugs.annotations.SuppressWarnings(value = "DLS_DEAD_LOCAL_STORE", justification = "please go away")
基於http://osdir.com/ml/java-findbugs-general/2010-06/msg00017.html
但是沒有任何選項可以提供幫助。請指教。 使用Eclipse Indigo。
如果您正在尋找一個解決方案來解決Android編譯,添加下列內容的build.gradle:FindBugs的{ excludeFilter =文件(「findBugsFilter.xml」) } – Abhijeet