Skip to content

Commit

Permalink
MID-8389: adding space between kind and object class for display name…
Browse files Browse the repository at this point in the history
… of ResourceObjectTypeDefinitionType
  • Loading branch information
skublik committed Jun 2, 2023
1 parent 6f9550a commit 2cd6f9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public static String getDisplayName(ResourceObjectTypeDefinitionType objectType)
if (objectClass != null) {
boolean isNotDisplayNameEmpty = StringUtils.isNotEmpty(sb.toString());
if (isNotDisplayNameEmpty) {
sb.append("(");
sb.append(" (");
}
sb.append(objectClass.getLocalPart());
if (isNotDisplayNameEmpty) {
Expand Down

0 comments on commit 2cd6f9b

Please sign in to comment.