From: Roland Häder Date: Wed, 24 Aug 2016 09:08:21 +0000 (+0200) Subject: Please cherry-pick: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c4cb0369166754002020f9659968a4c7ba6c3c06;p=pizzaservice-ejb.git Please cherry-pick: - unsetting all phone numbers make them disconnected from the contact instance, better is to make them managed (merge) --- diff --git a/src/java/org/mxchange/jcontacts/contact/PizzaContactSessionBean.java b/src/java/org/mxchange/jcontacts/contact/PizzaContactSessionBean.java index 1d1d5d6..4f9aa39 100644 --- a/src/java/org/mxchange/jcontacts/contact/PizzaContactSessionBean.java +++ b/src/java/org/mxchange/jcontacts/contact/PizzaContactSessionBean.java @@ -282,11 +282,6 @@ public class PizzaContactSessionBean extends BasePizzaDatabaseBean implements Co throw new IllegalStateException(MessageFormat.format("contact.contactId={0} is not valid.", contact.getContactId())); //NOI18N } - // Remove all referenced phone numbers - contact.setContactFaxNumber(null); - contact.setContactLandLineNumber(null); - contact.setContactMobileNumber(null); - // Merge cellphone, land-line and fix Contact managedContact = this.mergeContactData(contact);