Added reply rule

This commit is contained in:
M66B
2019-01-18 18:40:51 +00:00
parent ac3f655637
commit 8fe8def583
7 changed files with 221 additions and 65 deletions

View File

@@ -198,4 +198,10 @@ public class EntityIdentity {
String getDisplayName() {
return (display == null ? name : display);
}
@NonNull
@Override
public String toString() {
return getDisplayName() + (primary ? "" : "");
}
}