2025-02-01 14:18:34 +01:00
|
|
|
<FindBugsFilter
|
|
|
|
xmlns="https://raw.githubusercontent.com/spotbugs/spotbugs/4.8.6/spotbugs/etc/findbugsfilter.xsd">
|
|
|
|
<Match>
|
|
|
|
<Source name="~.*" />
|
2025-02-16 20:56:43 +01:00
|
|
|
<Bug code="EI,EI2,UuF" /> <!-- We don't care about these codes -->
|
2025-02-01 14:18:34 +01:00
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<!--Ignore
|
|
|
|
Auto Generated Code -->
|
|
|
|
<Source name="~.*build/.*" />
|
|
|
|
</Match>
|
2025-02-16 20:56:43 +01:00
|
|
|
<Match>
|
|
|
|
<!-- We are not Vulnerable to that Attack in our Context-->
|
|
|
|
<Class name="de.towerdefence.server.session.JwtService"/>
|
|
|
|
<Bug code="M,B,CT"/>
|
|
|
|
</Match>
|
2025-03-05 11:39:47 +01:00
|
|
|
<Match>
|
|
|
|
<!-- Spotbugs does not detect that the other cases are handled above in an if-->
|
|
|
|
<Class name="de.towerdefence.server.match.confirmation.MatchConfirmationService"/>
|
|
|
|
<Bug code="M,D,SF"/>
|
|
|
|
</Match>
|
2025-02-01 14:18:34 +01:00
|
|
|
</FindBugsFilter>
|