-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspotbugs-exclude.xml
25 lines (25 loc) · 1001 Bytes
/
spotbugs-exclude.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
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<Match>
<Bug pattern="EI_EXPOSE_REP" />
<Class name="com.github.electrostar.picolib.ResultSet" />
<Or>
<Method name="getTimes" params="" returns="int[]" />
<Method name="getChannelA" params="" returns="float[]" />
<Method name="getChannelB" params="" returns="float[]" />
<Method name="getChannelC" params="" returns="float[]" />
<Method name="getChannelD" params="" returns="float[]" />
</Or>
</Match>
<Match>
<Bug pattern="EI_EXPOSE_REP2" />
<Class name="com.github.electrostar.picolib.ResultSet" />
<Or>
<Method name="setTimes" params="int[]" returns="void" />
<Method name="setChannelA" params="float[]" returns="void" />
<Method name="setChannelB" params="float[]" returns="void" />
<Method name="setChannelC" params="float[]" returns="void" />
<Method name="setChannelD" params="float[]" returns="void" />
</Or>
</Match>
</FindBugsFilter>