Fix formatting in PropertyReferenceException message.
A message like, "No property 'creat' found for type 'User' Did you mean ''created''" is now properly formatted as:
"No property 'creat' found for type 'User'; Did you mean 'created'".
Closes gh-2603.
privatestaticfinalStringERROR_TEMPLATE="No property '%s' found for type '%s'";
privatestaticfinalStringHINTS_TEMPLATE=" Did you mean '%s'";
staticfinalStringERROR_TEMPLATE="No property '%s' found for type '%s'";
staticfinalStringHINTS_TEMPLATE="Did you mean %s";
privatefinalStringpropertyName;
privatefinalTypeInformation<?>type;
@ -105,13 +107,13 @@ public class PropertyReferenceException extends RuntimeException {
@@ -105,13 +107,13 @@ public class PropertyReferenceException extends RuntimeException {