From: Roland Haeder Date: Tue, 29 Sep 2015 12:23:12 +0000 (+0200) Subject: removed deprecated method X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a3e57eca2b3d43e9028824a5442e5f515d3df11d;p=jcore.git removed deprecated method Signed-off-by:Roland Häder --- diff --git a/src/org/mxchange/jcore/model/contact/UserContact.java b/src/org/mxchange/jcore/model/contact/UserContact.java index 549d045..2dae90e 100644 --- a/src/org/mxchange/jcore/model/contact/UserContact.java +++ b/src/org/mxchange/jcore/model/contact/UserContact.java @@ -32,7 +32,6 @@ import javax.persistence.Lob; import javax.persistence.Table; import javax.persistence.Temporal; import javax.persistence.TemporalType; -import org.mxchange.jcore.client.Client; import org.mxchange.jcore.model.contact.gender.Gender; /** @@ -483,28 +482,4 @@ public class UserContact implements Contact, Comparable { public Boolean isOwnContact () { return this.ownContact; } - - /** - * Shows this contact to the user. - *

- * @param client Client instance to use - * @deprecated Should not be called here - */ - @Deprecated - public void show (final Client client) { - // The client must be set - if (null == client) { - // Not set - throw new NullPointerException("client is null"); //NOI18N - } - - // Display name "box" - client.displayNameBox(this); - - // Display address "box" - client.displayAddressBox(this); - - // Display other data "box" - client.displayOtherDataBox(this); - } }