Skip to content

Commit 1e06bc1

Browse files
committed
chore(spotbugs-filter.xml): suppress MS_MUTABLE_ARRAY warning in JdbcUtils class.
Should be in f590396 commit.
1 parent 11c898b commit 1e06bc1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/config/spotbugs-filter.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,11 @@
176176
<Method name="getBoolean" />
177177
<Bug pattern="NP_BOOLEAN_RETURN_NULL" />
178178
</Match>
179+
<Match>
180+
<!-- I hope that JdbcTemplate.update() method won't modify the list of generated keys -->
181+
<Class name="ru.mystamps.web.support.jdbc.JdbcUtils" />
182+
<Bug pattern="MS_MUTABLE_ARRAY" />
183+
</Match>
179184
<Match>
180185
<!--
181186
No one should assign a value returned from this method to primitive boolean type.

0 commit comments

Comments
 (0)