1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
<?xml version="1.0"?>
<FindBugsFilter>
<!-- Byte Buddy requires its users to respect Byte Buddy's general assumption on immutability. -->
<Match>
<Bug pattern="MS_EXPOSE_REP"/>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_STATIC_REP"/>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_STATIC_REP2"/>
</Match>
<Match>
<Bug pattern="CT_CONSTRUCTOR_THROW"/>
</Match>
</FindBugsFilter>
|