]> git.mxchange.org Git - addressbook-mailer-ejb.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Tue, 23 Aug 2016 09:52:28 +0000 (11:52 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 9 Jun 2017 20:03:05 +0000 (22:03 +0200)
- unset mobile number, not land-line

src/java/org/mxchange/jcontacts/phone/AddressbookAdminContactPhoneSessionBean.java

index 7348f3927be1d97d7f437bffc6bd8a84b37d41eb..00726f4cec4e61989455df0ef3cf10d329322817 100644 (file)
@@ -506,7 +506,7 @@ public class AddressbookAdminContactPhoneSessionBean extends BaseAddressbookData
                Contact managedContact = this.getEntityManager().find(UserContact.class, contact.getContactId());
 
                // Remove it from contact
-               managedContact.setContactLandLineNumber(null);
+               managedContact.setContactMobileNumber(null);
 
                // Trace message
                this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.unlinkMobileDataFromContact: managedContact={1} - EXIT!", this.getClass().getSimpleName(), managedContact)); //NOI18N