File: FindBugsExcludeFilter.xml

package info (click to toggle)
jgit 2.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 12,956 kB
  • sloc: java: 126,114; xml: 2,151; sh: 348; perl: 269; makefile: 39
file content (55 lines) | stat: -rw-r--r-- 1,859 bytes parent folder | download
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
<?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>
</FindBugsFilter>