Skip to content

Commit

Permalink
[JENKINS-22455] FATAL: Null value not allowed as an environment varia…
Browse files Browse the repository at this point in the history
…ble: VARIABLE_NAME
  • Loading branch information
syl20bnr committed Apr 2, 2014
1 parent 6fa2fe3 commit f9967eb
Showing 1 changed file with 1 addition and 4 deletions.
Expand Up @@ -38,8 +38,6 @@ of this software and associated documentation files (the "Software"), to deal
* @author <a href="mailto:sylvain.benner@gmail.com">Sylvain Benner</a>
*/
public class GeneratorKeyValueParameterValue extends StringParameterValue {
@Exported(visibility = 4)
public final String value;

@DataBoundConstructor
public GeneratorKeyValueParameterValue(String name, String value) {
Expand All @@ -48,8 +46,7 @@ public GeneratorKeyValueParameterValue(String name, String value) {

public GeneratorKeyValueParameterValue(String name, String value,
String description) {
super(name, description);
this.value = value;
super(name, value, description);
}

/**
Expand Down

0 comments on commit f9967eb

Please sign in to comment.