-
Notifications
You must be signed in to change notification settings - Fork 81
/
findbugs-exclude.xml
54 lines (54 loc) · 1.43 KB
/
findbugs-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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
<Match>
<Bug category="MALICIOUS_CODE"/>
</Match>
<Match>
<Bug category="NOISE"/>
</Match>
<Match>
<Bug category="I18N"/>
</Match>
<Match>
<Bug category="SECURITY"/>
</Match>
<Match>
<Bug category="EXPERIMENTAL"/>
</Match>
<Match>
<Bug pattern="BAC_BAD_APPLET_CONSTRUCTOR" />
</Match>
<Match>
<Bug pattern="DMI_UNSUPPORTED_METHOD" />
</Match>
<Match>
<Bug pattern="CD_CIRCULAR_DEPENDENCY" />
</Match>
<Match>
<Bug pattern="IMA_INEFFICIENT_MEMBER_ACCESS" />
</Match>
<Match>
<Bug pattern="IL_INFINITE_RECURSIVE_LOOP" />
</Match>
<Match>
<Bug pattern="PS_PUBLIC_SEMAPHORES" />
</Match>
<Match>
<Bug pattern="UOE_USE_OBJECT_EQUALS" />
</Match>
<Match>
<Bug pattern="USM_USELESS_SUBCLASS_METHOD" />
</Match>
<Match>
<Bug pattern="BX_UNBOXING_IMMEDIATELY_REBOXED" />
</Match>
<Match>
<Bug pattern="ODR_OPEN_DATABASE_RESOURCE" />
</Match>
<Match class="com.aimluck.eip.exttimecard.ExtTimecardFormData">
<Bug pattern="HE_EQUALS_USE_HASHCODE" />
</Match>
<Match class="com.aimluck.eip.schedule.CellScheduleFormFacilityData">
<Bug pattern="DLS_DEAD_LOCAL_STORE" />
</Match>
</FindBugsFilter>