Skip to content

Commit

Permalink
server: Fixing stringification of detached proxies
Browse files Browse the repository at this point in the history
  • Loading branch information
barancev committed Jun 2, 2015
1 parent b5a1d07 commit 8f4b69f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ public int compareTo(RemoteProxy o) {

@Override
public String toString() {
return getRemoteHost().toString();
return getRemoteHost() != null ? getRemoteHost().toString() : "<detached>";
}

private final HtmlRenderer renderer = new DefaultHtmlRenderer(this);
Expand Down

0 comments on commit 8f4b69f

Please sign in to comment.