From c40dcf659897edb26affa408c3fa62e80f906550 Mon Sep 17 00:00:00 2001 From: Allon Mureinik Date: Sat, 1 Apr 2017 12:18:53 +0300 Subject: [PATCH] Exclude SF_SWITCH_NO_DEFAULT on FastDateParser FastDateParser#simpleQuote uses a switch case that actually has a default branch in it, but doesn't use break statements. SF_SWITCH_NO_DEFAULT unfortunately cannot recognize this pattern, and leave us with no choice but to suppress it. --- findbugs-exclude-filter.xml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/findbugs-exclude-filter.xml b/findbugs-exclude-filter.xml index f7623dfd3..772052ace 100644 --- a/findbugs-exclude-filter.xml +++ b/findbugs-exclude-filter.xml @@ -139,9 +139,14 @@ + - + + + +