]> git.mxchange.org Git - jcore.git/commitdiff
removed deprecated method
authorRoland Haeder <roland@mxchange.org>
Tue, 29 Sep 2015 12:23:12 +0000 (14:23 +0200)
committerRoland Haeder <roland@mxchange.org>
Tue, 29 Sep 2015 12:23:12 +0000 (14:23 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jcore/model/contact/UserContact.java

index 549d04557ba751ca8ea91a5b2780ffc5c8b3fb60..2dae90ec80a4ac122aa3b1f7bbead534ad73286c 100644 (file)
@@ -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<Contact> {
        public Boolean isOwnContact () {
                return this.ownContact;
        }
-
-       /**
-        * Shows this contact to the user.
-        * <p>
-        * @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);
-       }
 }