Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-29908] Reviewed @amuniz's comments
  • Loading branch information
Manuel Recena committed Aug 17, 2015
1 parent b4147b1 commit ae0564a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Expand Up @@ -19,7 +19,10 @@
import hudson.Launcher;
import hudson.matrix.MatrixAggregator;
import hudson.matrix.MatrixBuild;
import hudson.model.*;
import hudson.model.AbstractProject;
import hudson.model.Action;
import hudson.model.BuildListener;
import hudson.model.Run;
import hudson.plugins.analysis.core.BuildResult;
import hudson.plugins.analysis.core.FilesParser;
import hudson.plugins.analysis.core.HealthAwarePublisher;
Expand Down
Expand Up @@ -45,7 +45,7 @@ public class DependencyCheckResultAction extends AbstractResultAction<Dependency
*/
@Deprecated
public DependencyCheckResultAction(final AbstractBuild<?, ?> owner, final HealthDescriptor healthDescriptor, final DependencyCheckResult result) {
super((Run<?, ?>) owner, new DependencyCheckHealthDescriptor(healthDescriptor), result);
this((Run<?, ?>) owner, healthDescriptor, result);
}

/**
Expand Down

0 comments on commit ae0564a

Please sign in to comment.