Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2980)

Unified Diff: build/android/findbugs_filter/findbugs_exclude.xml

Issue 1432583003: Findbugs: Ignore all genereted Manifest classes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 dbff9d9667fed37fc295c175aab79170b8c58f11..320a2bf352f9d9e192943d634e938eb16081d24e 100644
--- a/build/android/findbugs_filter/findbugs_exclude.xml
+++ b/build/android/findbugs_filter/findbugs_exclude.xml
@@ -14,8 +14,9 @@ In particular, ~ at the start of a string means it's a regex.
<Match>
<Class name="~.*\.R(\$\w+)?" />
</Match>
+ <!-- Skip the generated Manifest class (including nested classes). -->
<Match>
- <Class name="~org\.chromium\..*\.Manifest(\$\w+)?" />
+ <Class name="~.*\.Manifest(\$\w+)?" />
</Match>
<Bug pattern="DM_STRING_CTOR" />
<!-- Ignore "reliance on default String encoding" warnings, as we're not multi-platform -->
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698