Don't use virtual memory mapping in WindowCache on Windows
[egit/eclipse.git] / org.eclipse.egit.ui / findBugs / FindBugsExcludeFilter.xml
blob82c22f00c99abb3efbc026815a2749e6709692f1
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <FindBugsFilter>
3      <!-- Silence SF_SWITCH_FALLTHROUGH, we want this fall-through
4        -->
5      <Match>
6        <Class name="org.eclipse.egit.ui.internal.decorators.DecoratableResourceAdapter" />
7        <Method name="&lt;init&gt;" params="org.eclipse.core.resources.IResource" returns="void" />
8        <Bug pattern="SF_SWITCH_FALLTHROUGH" />
9      </Match>
10      <!-- Silence CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE
11        -->
12      <Match>
13        <Class name="org.eclipse.egit.ui.internal.decorators.DecoratableResourceAdapter$RecursiveStateFilter" />
14        <Bug pattern="CN_IMPLEMENTS_CLONE_BUT_NOT_CLONEABLE" />
15      </Match>
16      <!-- Silence MS_SHOULD_BE_FINAL here, enums cannot use final
17        -->
18      <Match>
19        <Class name="org.eclipse.egit.ui.internal.repository.tree.RepositoryTreeNodeType" />
20        <Bug pattern="MS_SHOULD_BE_FINAL" />
21      </Match>
22      <!-- These classes are not meant to be serializable
23        -->
24      <Match>
25        <Or>
26          <Class name="org.eclipse.egit.ui.internal.history.SWTCommit" />
27          <Class name="org.eclipse.egit.ui.internal.history.SWTCommitList$SWTLane" />
28        </Or>
29        <Bug pattern="SE_BAD_FIELD" />
30      </Match>
31 </FindBugsFilter>