From 5a506c6dd7e45d3c59ee86534e7d4b1dfbb60a02 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sun, 22 Jan 2023 01:37:13 +0100 Subject: [PATCH] Continued: - moved utilities class into own package --- src/org/mxchange/jcontacts/model/utils/ContactUtils.java | 2 +- .../jcontacts/model/{contact/gender => utils}/GenderUtils.java | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) rename src/org/mxchange/jcontacts/model/{contact/gender => utils}/GenderUtils.java (95%) diff --git a/src/org/mxchange/jcontacts/model/utils/ContactUtils.java b/src/org/mxchange/jcontacts/model/utils/ContactUtils.java index 0a70b10..8df677f 100644 --- a/src/org/mxchange/jcontacts/model/utils/ContactUtils.java +++ b/src/org/mxchange/jcontacts/model/utils/ContactUtils.java @@ -148,7 +148,7 @@ public class ContactUtils implements Serializable { } /** - * Updates land-line data in contact instance. This method also removes the + * Updates fax number data in contact instance. This method also removes the * land-line instance if no country is selected. A bean (mostly EJB) should * then make sure that the land-line entry is being unlinked from contact * instance or being removed, if no longer used. diff --git a/src/org/mxchange/jcontacts/model/contact/gender/GenderUtils.java b/src/org/mxchange/jcontacts/model/utils/GenderUtils.java similarity index 95% rename from src/org/mxchange/jcontacts/model/contact/gender/GenderUtils.java rename to src/org/mxchange/jcontacts/model/utils/GenderUtils.java index d0a7f82..db3b339 100644 --- a/src/org/mxchange/jcontacts/model/contact/gender/GenderUtils.java +++ b/src/org/mxchange/jcontacts/model/utils/GenderUtils.java @@ -14,10 +14,11 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -package org.mxchange.jcontacts.model.contact.gender; +package org.mxchange.jcontacts.model.utils; import java.io.Serializable; import java.text.MessageFormat; +import org.mxchange.jcontacts.model.contact.gender.Gender; /** * Gender utilities class -- 2.39.5