Skip to content

Commit 4061087

Browse files
authored
Suppress new Spotbugs findings. (#1807)
1 parent d5e1cc6 commit 4061087

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

spotbugs-exclude.xml

+16-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,21 @@
88
https://spotbugs.readthedocs.io/en/latest/bugDescriptions.html
99
-->
1010
<FindBugsFilter>
11+
<!-- These open matches are new rules that we have not yet addressed. Let's block them generically, and come
12+
back to them later. -->
13+
<Match>
14+
<Bug pattern="CT_CONSTRUCTOR_THROW" />
15+
</Match>
16+
<Match>
17+
<Bug pattern="PA_PUBLIC_PRIMITIVE_ATTRIBUTE" />
18+
</Match>
19+
<Match>
20+
<Bug pattern="SING_SINGLETON_GETTER_NOT_SYNCHRONIZED" />
21+
</Match>
22+
<Match>
23+
<Bug pattern="SING_SINGLETON_GETTER_NOT_SYNCHRONIZED" />
24+
</Match>
25+
1126
<!-- Internals of Log event for apache log4j-->
1227
<Match>
1328
<Bug pattern="EI_EXPOSE_REP"/>
@@ -169,4 +184,4 @@
169184
</And>
170185
</Or>
171186
</Match>
172-
</FindBugsFilter>
187+
</FindBugsFilter>

0 commit comments

Comments
 (0)