Index: build/android/findbugs_filter/findbugs_exclude.xml |
diff --git a/build/android/findbugs_filter/findbugs_exclude.xml b/build/android/findbugs_filter/findbugs_exclude.xml |
index 7b6860d0bbaaf5fe80038dc40837f764face3dce..2f7bde57097822e9b9feda85c41eab1b06f1df40 100644 |
--- a/build/android/findbugs_filter/findbugs_exclude.xml |
+++ b/build/android/findbugs_filter/findbugs_exclude.xml |
@@ -21,6 +21,14 @@ In particular, ~ at the start of a string means it's a regex. |
<Match> |
<Class name="~org\.chromium\.content\..*\.NativeLibraries.*?" /> |
</Match> |
+ <!-- |
+ Ignore bugs in CleanupReferenceTest.java (redundant null check) |
+ TODO(joth): Group all GC related tests and filter them out, since the null |
+ check is necessary to make sure the nullification is flushed to memory. |
+ --> |
+ <Match> |
+ <Class name="~org\.chromium\.content\..*\.CleanupReferenceTest.*?" /> |
+ </Match> |
<!-- Ignore errors in JavaBridge due to reflection. --> |
<Match> |
<Class name="~.*\.JavaBridge.*"/> |