aboutsummaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit/findBugs/FindBugsExcludeFilter.xml
blob: 2efbb9c1a5b7e862075f13f7a4f8bd7978175320 (plain)
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
55
56
57
58
59
60
61
<?xml version="1.0" encoding="UTF-8" ?>
<FindBugsFilter>
     <!-- Silence PackFile.mmap calls GC, we need to force it to remove stale
          memory mapped segments if the JVM heap is out of address space.
       -->
     <Match>
       <Class name="org.eclipse.jgit.storage.file.PackFile" />
       <Method name="mmap" />
       <Bug pattern="DM_GC" />
     </Match>

     <!-- Silence ignoring return value of mkdirs -->
     <Match>
       <Class name="org.eclipse.jgit.dircache.DirCacheCheckout" />
       <Method name="checkout" />
       <Bug pattern="RV_RETURN_VALUE_IGNORED_BAD_PRACTICE" />
     </Match>

	   <!-- Silence the construction of our magic String instance.
	     -->
     <Match>
	 <Class name="org.eclipse.jgit.lib.Config" />
	 <Bug pattern="DM_STRING_VOID_CTOR"/>
     </Match>

     <!-- Silence comparison of string by == or !=.  This class is built
          only to provide compare of string values, we won't make a mistake
          here with == assuming .equals() style equality.
       -->
     <Match>
       <Class name="org.eclipse.jgit.util.StringUtils" />
       <Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ" />
     </Match>

     <!-- We want complete control over clone behavior and
          don't want to use Object's clone implementation.
       -->
     <Match>
       <Bug pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE" />
     </Match>

     <!-- blockIndex is initialized to 0 automatically.
       -->
     <Match>
       <Class name="org.eclipse.jgit.util.TemporaryBuffer$BlockInputStream" />
       <Bug pattern="UR_UNINIT_READ" />
     </Match>

     <!-- Silence returning null for Boolean return type -->
     <Match>
       <Class name="org.eclipse.jgit.util.StringUtils" />
       <Method name="toBooleanOrNull" />
       <Bug pattern="NP_BOOLEAN_RETURN_NULL" />
     </Match>

     <!-- Transport initialization works like this -->
     <Match>
       <Class name="org.eclipse.jgit.transport.Transport" />
       <Bug pattern="IC_SUPERCLASS_USES_SUBCLASS_DURING_INITIALIZATION" />
     </Match>
</FindBugsFilter>