Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
bugfix: JENKINS-38168 job-params being overwritten by template
  • Loading branch information
Marc Carter committed Sep 17, 2016
1 parent a1d8033 commit f8d19ed
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -31,6 +31,11 @@ public void postClone(AbstractProject implementationProject) {
super.postClone(implementationProject);
}

@Override
public String getDisabledText() {
return null; // Always available
}

private static List<ParameterDefinition> parameters(AbstractProject implementationProject) {
@SuppressWarnings("unchecked")
ParametersDefinitionProperty parametersDefinitionProperty = (ParametersDefinitionProperty) implementationProject.getProperty(ParametersDefinitionProperty.class);
Expand Down

0 comments on commit f8d19ed

Please sign in to comment.