forked from wpilibsuite/shuffleboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
findBugsSuppressions.xml
47 lines (46 loc) · 1.4 KB
/
findBugsSuppressions.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<FindBugsFilter>
<Match>
<Class name="edu.wpi.first.shuffleboard.app.MainWindowController"/>
<Method name="close"/>
<Bug pattern="DM_EXIT"/>
</Match>
<Match>
<Class name="edu.wpi.first.shuffleboard.app.PlaybackController"/>
<Bug pattern="DMI_HARDCODED_ABSOLUTE_FILENAME"/>
</Match>
<Match>
<Class name="edu.wpi.first.shuffleboard.app.SaveFileHandler"/>
<Method name="isUpToDate"/>
<Bug pattern="DCN_NULLPOINTER_EXCEPTION"/>
</Match>
<Match>
<Class name="edu.wpi.first.shuffleboard.app.plugin.PluginLoader"/>
<Method name="loadPluginClass"/>
<Bug pattern="REFLC_REFLECTION_MAY_INCREASE_ACCESSIBILITY_OF_CLASS"/>
</Match>
<Match>
<Class name="~.*"/>
<Bug pattern="MS_EXPOSE_REP"/>
</Match>
<Match>
<Class name="~.*"/>
<Bug pattern="EI_EXPOSE_REP"/>
</Match>
<Match>
<Class name="~.*"/>
<Bug pattern="EI_EXPOSE_REP2"/>
</Match>
<Match>
<Class name="~.*"/>
<Bug pattern="MS_EXPOSE_BUF"/>
</Match>
<Match>
<Class name="~.*"/>
<Bug pattern="EI_EXPOSE_STATIC_REP2"/>
</Match>
<!-- Reason: http://junit.org/junit5/docs/current/user-guide/#writing-tests-nested -->
<Match>
<Class name="~.*Test\$.*"/>
<Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
</Match>
</FindBugsFilter>