diff options
| author | Bananeweizen <bananeweizen@gmx.de> | 2014-01-03 15:31:40 +0100 |
|---|---|---|
| committer | Bananeweizen <bananeweizen@gmx.de> | 2014-01-03 15:31:51 +0100 |
| commit | d85b8c357b6fdf1de9cf9c28a66d9e0c4ac6fc61 (patch) | |
| tree | a0d9a5ebddde2847a6fbb7fdc5416770f6a067a5 /main/project/findbugs | |
| parent | adbbc886bcd4927188debcc4becb4034fc75c579 (diff) | |
| download | cgeo-d85b8c357b6fdf1de9cf9c28a66d9e0c4ac6fc61.zip cgeo-d85b8c357b6fdf1de9cf9c28a66d9e0c4ac6fc61.tar.gz cgeo-d85b8c357b6fdf1de9cf9c28a66d9e0c4ac6fc61.tar.bz2 | |
findbugs: disable rule with false positives
Diffstat (limited to 'main/project/findbugs')
| -rw-r--r-- | main/project/findbugs/exclusions.xml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/main/project/findbugs/exclusions.xml b/main/project/findbugs/exclusions.xml index 798ecb4..00f0032 100644 --- a/main/project/findbugs/exclusions.xml +++ b/main/project/findbugs/exclusions.xml @@ -46,5 +46,9 @@ <Bug pattern="UWF_FIELD_NOT_INITIALIZED_IN_CONSTRUCTOR"/> <Class name="~.*Test"/> </Match> - + + <!-- To many false positives here. The same issue will also be found by Eclipse locally, so we should be fine. --> + <Match> + <Bug pattern="SF_SWITCH_NO_DEFAULT"/> + </Match> </FindBugsFilter>
\ No newline at end of file |
