Skip to content

Commit

Permalink
JENKINS-31779 Fix by Leroy Kendall
Browse files Browse the repository at this point in the history
  • Loading branch information
ekimber committed Jan 25, 2016
1 parent e1af9bc commit aa2a09a
Showing 1 changed file with 5 additions and 1 deletion.
Expand Up @@ -15,7 +15,7 @@ public class PitProjectAction extends Actionable implements ProminentProjectActi
public PitProjectAction(AbstractProject<?, ?> project) {
this.project = project;

PitPublisher cp = (PitPublisher) project.getPublishersList().get(PitPublisher.DESCRIPTOR);
// PitPublisher cp = (PitPublisher) project.getPublishersList().get(PitPublisher.DESCRIPTOR);
// if (cp != null) {
// onlyStable = cp.getOnlyStable();
// }
Expand All @@ -37,6 +37,10 @@ public PitBuildAction getLastResult() {
return null;
}

public AbstractProject<?, ?> getProject() {
return project;
}

/**
* Getter for property 'lastResult'.
*
Expand Down

0 comments on commit aa2a09a

Please sign in to comment.