Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 7c72a36c88051cf2268689bd75d24fc6837d01b8 (plain) (tree)
1
2
3
4
5
6
7
8
9
                
                                                                                                   

                                                                        



                                                                                                       
                
        
                                                                        

                                                                  

                




                                                                                         
        
                 
<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>
	
	<!-- Ignore all NM_SAME_SIMPLE_NAME_AS_SUPERCLASS violations -->
	<Match>
		<Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
	</Match>
	
	<!-- Ignore all EI_EXPOSE_REP violations for IAdapterFactory#getAdapterList() -->
	<Match>
		<Bug pattern="EI_EXPOSE_REP"/>
		<Method name="getAdapterList"/>
	</Match>
	
</FindBugsFilter>

Back to the top