leave toString as-is

This commit is contained in:
YevhenBondarenko 2023-10-02 23:03:15 +02:00 committed by Andrii Shvaika
parent 28b23ba9b4
commit f001b2588d

View File

@ -28,4 +28,14 @@ public class EntitySubtype implements Serializable {
private final TenantId tenantId;
private final EntityType entityType;
private final String type;
@Override
public String toString() {
final StringBuilder sb = new StringBuilder("EntitySubtype{");
sb.append("tenantId=").append(tenantId);
sb.append(", entityType=").append(entityType);
sb.append(", type='").append(type).append('\'');
sb.append('}');
return sb.toString();
}
}