Skip to content

Commit

Permalink
chore: suppress RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT in SourceBuild…
Browse files Browse the repository at this point in the history
…erTest (#10166)
  • Loading branch information
cprasad1 authored Dec 21, 2023
1 parent c0bf7df commit 788439d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions findbugs/findbugs-exclude.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ For a detailed description of findbugs bug categories, see http://findbugs.sourc
<Class name="~io.confluent.ksql.version.metrics.KsqlVersionMetrics"/>
</Match>

<Match>
<Class name="~io.confluent.ksql.execution.streams.SourceBuilderTest"/>
</Match>

<!-- false positive in Java 11, see https://github.com/spotbugs/spotbugs/issues/756 -->
<Match>
<Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE"/>
Expand All @@ -55,6 +59,9 @@ For a detailed description of findbugs bug categories, see http://findbugs.sourc
<Match>
<Bug pattern="THROWS_METHOD_THROWS_CLAUSE_THROWABLE"/>
</Match>
<Match>
<Bug pattern="RV_RETURN_VALUE_IGNORED_NO_SIDE_EFFECT"/>
</Match>

<!--
DO NOT USE THIS EXCLUSION FILE FOR NON-GENERATED CODE
Expand Down

0 comments on commit 788439d

Please sign in to comment.