Browse Source

ignore further dagger generated classes

Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Andy Scherzinger 2 years ago
parent
commit
4cc2048330
1 changed files with 4 additions and 2 deletions
  1. 4 2
      spotbugs-filter.xml

+ 4 - 2
spotbugs-filter.xml

@@ -23,8 +23,10 @@
     </Match>
     <!-- Dagger generated code uses internal APIs -->
     <Match>
-        <Class name="~.*\..*.*Factory" />
-		<Class name="~.*\..*.*Factory_Impl" />
+	    <Or>
+            <Class name="~.*\..*.*Factory" />
+		    <Class name="~.*\..*.*Factory_Impl" />
+		</Or>
         <Bug pattern="IICU_INCORRECT_INTERNAL_CLASS_USE" />
     </Match>