CB-1481: ContactName - name.formatted returns with a trailing white space

This commit is contained in:
Simon MacDonald 2012-09-17 09:33:17 -04:00
parent 0f42c65792
commit ac14b0d73b

View File

@ -792,10 +792,10 @@ public class ContactAccessorSdk5 extends ContactAccessor {
formatted.append(middleName + " ");
}
if (familyName != null) {
formatted.append(familyName + " ");
formatted.append(familyName);
}
if (honorificSuffix != null) {
formatted.append(honorificSuffix + " ");
formatted.append(" " + honorificSuffix);
}
contactName.put("familyName", familyName);