Skip to content

Commit

Permalink
Merge pull request jenkinsci#4803 from jtnord/JENKINS-62688
Browse files Browse the repository at this point in the history
[JENKINS-62688] use id in User.toString()
  • Loading branch information
oleg-nenashev authored Jun 24, 2020
2 parents 1ea0b37 + eb1c156 commit 339f9b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/model/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -688,7 +688,7 @@ private boolean relatedTo(@NonNull AbstractBuild<?, ?> b) {
}

public @Override String toString() {
return fullName;
return id;
}

/**
Expand Down

0 comments on commit 339f9b9

Please sign in to comment.