Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
gboissinot committed Jul 13, 2012
1 parent 85b9c7f commit 4282ddc
Showing 1 changed file with 4 additions and 2 deletions.
Expand Up @@ -19,8 +19,10 @@ public EnvInjectBuilderContributionAction(Map<String, String> resultVariables) {
this.resultVariables = resultVariables;
}

public void buildEnvVars(AbstractBuild<?, ?> build, EnvVars env) {
env.putAll(resultVariables);
public void buildEnvVars(AbstractBuild<?, ?> build, EnvVars envVars) {
if (envVars != null) {
envVars.putAll(resultVariables);
}
}

public String getIconFileName() {
Expand Down

0 comments on commit 4282ddc

Please sign in to comment.