methodwarningsuppressor.java

来自「A static analysis tool to find bugs in J」· Java 代码 · 共 27 行

JAVA
27
字号
package edu.umd.cs.findbugs;public class MethodWarningSuppressor extends ClassWarningSuppressor {	MethodAnnotation method;	public MethodWarningSuppressor(String bugPattern, ClassAnnotation clazz, MethodAnnotation method) {		super(bugPattern, clazz);		this.method = method;		}	@Override	public boolean match(BugInstance bugInstance) {		if (!super.match(bugInstance)) return false;	MethodAnnotation bugMethod = bugInstance.getPrimaryMethod();	if (bugMethod != null &&		!method.equals(bugMethod)) return false;	if (DEBUG)	System.out.println("Suppressing " + bugInstance);	return true;	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?