Skip to content
This repository has been archived by the owner on Apr 6, 2022. It is now read-only.

Commit

Permalink
JENKINS-40083 AbstractProjectAction.getLastFinishedBuild is @exported.…
Browse files Browse the repository at this point in the history
… If the "Build" is not instanceof AbstractBuild a ClassCastException will be thrown.
  • Loading branch information
i386 committed Nov 29, 2016
1 parent 5c3e7b6 commit 90dcc96
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -483,7 +483,8 @@ protected T getResultAction(final Run<?, ?> lastRun) {
*/
@Deprecated @CheckForNull @Exported
public AbstractBuild<?, ?> getLastFinishedBuild() {
return (AbstractBuild<?, ?>) getLastFinishedRun();
Run<?, ?> lastFinishedRun = getLastFinishedRun();
return lastFinishedRun instanceof AbstractBuild ? (AbstractBuild<?, ?>) lastFinishedRun : null;
}

/**
Expand Down

0 comments on commit 90dcc96

Please sign in to comment.