blob: ba9d1d09969e2fdfe1563ce2f27b0b27e531919c (
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
|
<?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.lib.PackFile" />
<Method name="mmap" />
<Bug pattern="DM_GC" />
</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.lib.util.StringUtils" />
<Bug pattern="ES_COMPARING_PARAMETER_STRING_WITH_EQ" />
</Match>
</FindBugsFilter>
|