]> git.mxchange.org Git - jcontacts-core.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Sun, 22 Jan 2023 00:02:06 +0000 (01:02 +0100)
committerRoland Häder <roland@mxchange.org>
Sun, 22 Jan 2023 00:02:06 +0000 (01:02 +0100)
- removed no longer used method and you can do the same differently

src/org/mxchange/jcontacts/model/contact/gender/GenderUtils.java

index 8abd41e27171fdb8f97ee4d41c538e16d6faf300..d0a7f8228f3b5ad7115b2754016eb39e9b884199 100644 (file)
@@ -18,8 +18,6 @@ package org.mxchange.jcontacts.model.contact.gender;
 
 import java.io.Serializable;
 import java.text.MessageFormat;
-import java.util.LinkedList;
-import java.util.List;
 
 /**
  * Gender utilities class
@@ -38,25 +36,6 @@ public class GenderUtils implements Serializable {
         */
        private static char[] validChars;
 
-       /**
-        * All available genders as a list
-        * <p>
-        * @return Selectable genders (not UNKNOWN)
-        */
-       public static List<Gender> allGenders () {
-               // Init list
-               final List<Gender> list = new LinkedList<>();
-
-               // Walk through all genders
-               for (final Gender gender : Gender.values()) {
-                       // Add it and check if it has been added
-                       list.add(gender);
-               }
-
-               // Return it
-               return list;
-       }
-
        /**
         * Getter for Gender enumeration from given character
         * <p>