edu.umd.cs.findbugs.MethodWarningSuppressor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotbugs Show documentation
Show all versions of spotbugs Show documentation
SpotBugs: Because it's easy!
The newest version!
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;
}
}