Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Commit

Permalink
[JENKINS-23939] Fixed regression issue where removing a maven module …
Browse files Browse the repository at this point in the history
…didn't mark it's findbugs issues as fixed.
  • Loading branch information
lewisvail3 committed Mar 2, 2016
1 parent acfc289 commit 7ea7054
Showing 1 changed file with 0 additions and 3 deletions.
Expand Up @@ -85,9 +85,6 @@ public final RuleResult<Integer> evaluate(AbstractBuild<?, ?> previousBuild,
private RuleResult<Integer> evaluateMaven(AbstractBuild<?, ?> previousBuild, AbstractBuild<?, ?> build) {
List<FindBugsMavenResultAction> currentActions = ActionRetriever.getResult(build, Result.UNSTABLE,
FindBugsMavenResultAction.class);
if (currentActions.isEmpty()) {
return null;
}
int currentAnnotations = getNumberOfMavenAnnotations(currentActions);

List<FindBugsMavenResultAction> previousActions = ActionRetriever.getResult(previousBuild, Result.UNSTABLE, FindBugsMavenResultAction.class);
Expand Down

0 comments on commit 7ea7054

Please sign in to comment.