Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2267e66c078987e115cb6276b9bcaac64c0a6e3a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<FindBugsFilter>
	<!-- Ignore all ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD violations in bundle activators -->
	<Match>
		<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD"/>
		<Or>
			<Method name="start" params="org.osgi.framework.BundleContext" returns="void"/>
			<Method name="stop" params="org.osgi.framework.BundleContext" returns="void"/>
		</Or>
	</Match>
</FindBugsFilter>

Back to the top