Skip to content

Commit

Permalink
fix for MID-4034
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Jun 30, 2017
1 parent ac7503e commit c0a062a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -138,7 +138,7 @@ public static String toStringValue(PrismPropertyValue propertyValue) {
} else if (value instanceof byte[]) {
return "(binary data)";
} else {
return "(a value of type " + value.getClass().getName() + ")"; // todo i18n
return "(a value of type " + value.getClass().getSimpleName() + ")"; // todo i18n
}
}

Expand Down

0 comments on commit c0a062a

Please sign in to comment.