diff options
author | agrieve <agrieve@chromium.org> | 2015-11-03 12:11:54 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-11-03 20:13:14 +0000 |
commit | d2182b19a04159920c3472401b4d0efe732651d6 (patch) | |
tree | bc4d5934d9dc854f7f6b5f674e6f369558c94e36 /build/android | |
parent | c7e4ace65da70496f88363b61875b682b82ac690 (diff) | |
download | chromium_src-d2182b19a04159920c3472401b4d0efe732651d6.zip chromium_src-d2182b19a04159920c3472401b4d0efe732651d6.tar.gz chromium_src-d2182b19a04159920c3472401b4d0efe732651d6.tar.bz2 |
Findbugs: Ignore all generated Manifest classes.
Not just those that begin with org.chromium.
BUG=550985
Review URL: https://codereview.chromium.org/1432583003
Cr-Commit-Position: refs/heads/master@{#357601}
Diffstat (limited to 'build/android')
-rw-r--r-- | build/android/findbugs_filter/findbugs_exclude.xml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/android/findbugs_filter/findbugs_exclude.xml b/build/android/findbugs_filter/findbugs_exclude.xml index dbff9d9..320a2bf 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 --> |