use of org.sonar.api.scan.issue.filter.IssueFilterChain in project sonarqube by SonarSource.
the class IssueFilters method accept.
public boolean accept(String componentKey, ScannerReport.Issue rawIssue) {
IssueFilterChain filterChain = new DefaultIssueFilterChain(filters);
FilterableIssue fIssue = new DefaultFilterableIssue(module, projectAnalysisInfo, rawIssue, componentKey);
if (filterChain.accept(fIssue)) {
return acceptDeprecated(componentKey, rawIssue);
}
return false;
}
Aggregations