Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b98ad71aa42b83fb0129e56f1e01b2d1bc85d03a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<FindBugsFilter>
     <!-- Exclusions -->
     <Match>
       	<Bug pattern="EI_EXPOSE_REP"/>
        <Or>
            <Class name="org.eclipse.virgo.kernel.config.internal.validate.KernelConfigPointSchemaWalker"/>
            <Class name="org.eclipse.virgo.kernel.config.internal.validate.KernelConfigPointSchemaParser"/>
        </Or>
        <Method name="getTokenNames"/>
     </Match>
	<Match>
       	<Bug pattern="SIC_INNER_SHOULD_BE_STATIC"/>
        <Class name="org.eclipse.virgo.kernel.config.internal.validate.KernelConfigPointSchemaParser$DFA15"/>
     </Match>
	<Match>
       	<Bug pattern="MS_PKGPROTECT"/>
        <Or>
            <Class name="org.eclipse.virgo.kernel.config.internal.validate.KernelConfigPointSchemaParser"/>
            <Class name="org.eclipse.virgo.kernel.config.internal.validate.KernelConfigPointSchemaWalker"/>
        </Or>
        <Field name="tokenNames"/>
     </Match>	
</FindBugsFilter>

Back to the top