Skip to content

Commit

Permalink
Fix for bug JENKINS-34181 NPE after plugin update
Browse files Browse the repository at this point in the history
  • Loading branch information
Le0Michine committed Apr 14, 2016
1 parent 32b82bd commit d91a0d6
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -26,8 +26,8 @@
public class BuildNameSetter extends BuildWrapper implements MatrixAggregatable {

public final String template;
public final Boolean runAtStart;
public final Boolean runAtEnd;
public boolean runAtStart = true;
public boolean runAtEnd = true;

@DataBoundConstructor
public BuildNameSetter(String template, Boolean runAtStart, Boolean runAtEnd) {
Expand Down

0 comments on commit d91a0d6

Please sign in to comment.