- used new NumberUtils class for null-safe comparison
Signed-off-by: Roland Häder <roland@mxchange.org>
import java.util.Properties;
import java.util.Random;
import org.mxchange.jcontacts.model.contact.Contact;
-import org.mxchange.jcontacts.model.contact.ContactUtils;
+import org.mxchange.jcontacts.model.contact.Contacts;
/**
* An utilities class for users
// Is contact set?
if (sourceUser.getUserContact() instanceof Contact) {
// Copy also contact data
- ContactUtils.copyAll(sourceUser.getUserContact(), targetUser.getUserContact());
+ Contacts.copyAll(sourceUser.getUserContact(), targetUser.getUserContact());
}
// Copy other data