Skip to content

Commit

Permalink
Disable null pointer warnings in SpotBugs.
Browse files Browse the repository at this point in the history
SpotBugs has a bug: spotbugs/spotbugs#651

IntelliJ has better built-in null warnings anyway.
  • Loading branch information
prdoyle committed Jun 1, 2023
1 parent 162ce20 commit d9648df
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions spotbugsExclude.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
<Match>
<Bug code="RCN"/>
</Match>
<Match>
<Bug code="NP"/> <!-- https://github.com/spotbugs/spotbugs/issues/651 -->
</Match>
<Match>
<Bug code="DP"/> <!-- doPrivileged is deprecated for removal -->
</Match>
Expand Down

0 comments on commit d9648df

Please sign in to comment.