Remove spotbugs workaround

pull/144/head
Richard Körber 2023-09-27 18:45:29 +02:00
parent 2485666b87
commit 5ef39534ec
No known key found for this signature in database
GPG Key ID: AAB9FD19C78AA3E0
2 changed files with 0 additions and 16 deletions

View File

@ -81,9 +81,6 @@
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.2.3</version>
<configuration>
<excludeFilterFile>src/config/spotbugs-exclude.xml</excludeFilterFile>
</configuration>
<executions>
<execution>
<goals>

View File

@ -1,13 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter
xmlns="https://github.com/spotbugs/filter/3.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://github.com/spotbugs/filter/3.0.0 https://raw.githubusercontent.com/spotbugs/spotbugs/3.1.0/spotbugs/etc/findbugsfilter.xsd">
<!-- False positive on Java 11 -->
<!-- Workaround for https://github.com/spotbugs/spotbugs/issues/756 -->
<Match>
<Bug pattern="RCN_REDUNDANT_NULLCHECK_WOULD_HAVE_BEEN_A_NPE" />
</Match>
</FindBugsFilter>