From a3e57eca2b3d43e9028824a5442e5f515d3df11d Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Tue, 29 Sep 2015 14:23:12 +0200 Subject: [PATCH] =?utf8?q?removed=20deprecated=20method=20Signed-off-by:Ro?= =?utf8?q?land=20H=C3=A4der=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../jcore/model/contact/UserContact.java | 25 ------------------- 1 file changed, 25 deletions(-) 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); - } } -- 2.39.5