Browse Source

exclude JSON/Data classes for push content

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

+ 4 - 0
spotbugs-filter.xml

@@ -33,6 +33,10 @@
     <Match>
         <Class name="~.*\$\$Parcelable.*" />
     </Match>
+    <!-- JSON/Data classes with generated accessor methods -->
+    <Match>
+        <Class name="~com\.nextcloud\.talk\.models\.json\.push.*" />
+    </Match>
 
     <!-- Dagger code is autogenerated. Exclude it from Check. -->
     <Match>