Skip to content

Commit

Permalink
Merge pull request #98 from carlosrodlop/JENKINS-34370
Browse files Browse the repository at this point in the history
[JENKINS-34370] NPE coming from BuildForm.java in line 102
  • Loading branch information
recena committed Apr 27, 2016
2 parents 93872cb + fbce93e commit 1dbe68a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -98,7 +98,7 @@ private BuildForm(ItemGroup context, final PipelineBuild pipelineBuild, final Co
projectId = project.getFullName().hashCode();
final ParametersDefinitionProperty params = project.getProperty(ParametersDefinitionProperty.class);
final ArrayList<String> paramList = new ArrayList<String>();
if (params != null) {
if (params != null && params.getParameterDefinitionNames() != null) {
for (String p : params.getParameterDefinitionNames()) {
paramList.add(p);
}
Expand Down

0 comments on commit 1dbe68a

Please sign in to comment.