File: spotbugs-exclude.xml

package info (click to toggle)
byte-buddy 1.18.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 18,644 kB
  • sloc: java: 197,326; xml: 8,007; sh: 217; ansic: 101; makefile: 14
file content (22 lines) | stat: -rw-r--r-- 567 bytes parent folder | download | duplicates (2)
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>