From c82c54805fdc2f8f7cff843e4d01ddf37986fbf7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Tue, 18 Oct 2022 15:50:28 +0200 Subject: [PATCH] Continued: - removed deprecated utlities method --- .../model/contact/title/TitleUtils.java | 21 ------------------- 1 file changed, 21 deletions(-) diff --git a/src/org/mxchange/jcontacts/model/contact/title/TitleUtils.java b/src/org/mxchange/jcontacts/model/contact/title/TitleUtils.java index de873ed..0d100d7 100644 --- a/src/org/mxchange/jcontacts/model/contact/title/TitleUtils.java +++ b/src/org/mxchange/jcontacts/model/contact/title/TitleUtils.java @@ -38,27 +38,6 @@ public class TitleUtils implements Serializable { */ private static char[] validChars; - /** - * All available personal titles as a list - *

- * @return Selectable personal titles - * @deprecated Arrays.asList() is there - */ - @Deprecated - public static List allPersonalTitlesAsList () { - // Init list - List list = new LinkedList<>(); - - // Walk through all genders - for (final PersonalTitle title : PersonalTitle.values()) { - // Add it and check if it has been added - list.add(title); - } - - // Return it - return list; - } - /** * Getter for personal title enumeration from given character *

-- 2.39.5