Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Commit

Permalink
Merge pull request #99 from jglick/GitStep.credentialsId
Browse files Browse the repository at this point in the history
[JENKINS-26085] Handle empty credentialsId
  • Loading branch information
jglick committed Mar 25, 2015
2 parents 52d1eba + be262bf commit d22d9e6
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -90,7 +90,7 @@ public String getCredentialsId() {
}

@DataBoundSetter public void setCredentialsId(String credentialsId) {
this.credentialsId = credentialsId;
this.credentialsId = Util.fixEmpty(credentialsId);
}

@Override public SCM createSCM() {
Expand Down

0 comments on commit d22d9e6

Please sign in to comment.