Skip to content

Commit

Permalink
ns
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Jul 17, 2023
1 parent c2c73bd commit 1ea26d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/jgroups/protocols/relay/SiteUUID.java
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public int compareTo(Address other) {

public String print(boolean detailed) {
String retval=name != null? name : NameCache.get(this);
return String.format("%s:%s %s", retval, site != null? site : "<all sites>", detailed? printOthers() : "");
return String.format("%s:%s%s", retval, site != null? site : "<all sites>", detailed? printOthers() : "");
}

@Override
Expand Down

0 comments on commit 1ea26d5

Please sign in to comment.