Skip to content

Commit

Permalink
Filter out SpotBugs warnings introduced by the generated sources update
Browse files Browse the repository at this point in the history
  • Loading branch information
mikir committed Jul 18, 2024
1 parent 17a8661 commit 8fd1507
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions compiler/extensions/java/runtime/spotbugs_filter.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,19 @@
</And>
</Or>
</Match>
<Match>
<!-- Be wary of letting constructors throw exceptions. -->
<Bug code="CT"/>
<Or>
<Class name="test_object.ArrayHolder"/>
<Class name="test_object.ArrayObject"/>
<Class name="test_object.CreatorNested"/>
<Class name="test_object.CreatorObject"/>
<Class name="test_object.SerializeNested"/>
<Class name="test_object.SerializeObject"/>
<Class name="test_object.WalkerNested"/>
<Class name="test_object.WalkerObject"/>
<Class name="test_object.WalkerUnion"/>
</Or>
</Match>
</FindBugsFilter>

0 comments on commit 8fd1507

Please sign in to comment.