Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-38987] Jesse wants spaces
  • Loading branch information
stephenc committed Oct 14, 2016
1 parent 96e11cb commit ccbc3e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/jenkins/branch/MultiBranchProject.java
Expand Up @@ -155,7 +155,7 @@ public String getPronoun() {
result.add(pronoun);
}
}
return result.isEmpty() ? super.getPronoun() : StringUtils.join(result, "/");
return result.isEmpty() ? super.getPronoun() : StringUtils.join(result, " / ");
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/jenkins/branch/OrganizationFolder.java
Expand Up @@ -235,7 +235,7 @@ public String getPronoun() {
result.add(pronoun);
}
}
return result.isEmpty() ? super.getPronoun() : StringUtils.join(result, "/");
return result.isEmpty() ? super.getPronoun() : StringUtils.join(result, " / ");
}

@Override
Expand Down

0 comments on commit ccbc3e6

Please sign in to comment.