Browse Source

exclude room generated classes

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

+ 7 - 0
spotbugs-filter.xml

@@ -35,8 +35,15 @@
     <Match>
         <Class name="~.*\$\$Parcelable.*" />
     </Match>
+	<!-- Room code is autogenerated. Exclude it from Check. -->
 	<Match>
         <Class name="~.*\.TalkDatabase_Impl.*" />
+    </Match>
+	<Match>
+        <Class name="~.*\.UsersDao_Impl.*" />
+    </Match>
+	<Match>
+        <Class name="~.*\.ArbitraryStoragesDao_Impl.*" />
     </Match>
     <!-- JSON/Data classes with generated accessor methods -->
     <Match>