From eaa63caf7b528d3f5038741ee3b41e60d20a21eb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 18 Apr 2020 15:41:49 +0200 Subject: [PATCH] Continued: - renamed copyAll() to copyFooData() MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- src/org/mxchange/jcontacts/model/contact/Contacts.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/mxchange/jcontacts/model/contact/Contacts.java b/src/org/mxchange/jcontacts/model/contact/Contacts.java index 8bd3632..e95a4c7 100644 --- a/src/org/mxchange/jcontacts/model/contact/Contacts.java +++ b/src/org/mxchange/jcontacts/model/contact/Contacts.java @@ -71,7 +71,7 @@ public class Contacts implements Serializable { * @param sourceContact Source instance * @param targetContact Target instance */ - public static void copyAll (final Contact sourceContact, final Contact targetContact) { + public static void copyContactData (final Contact sourceContact, final Contact targetContact) { // Contact should be valid if (null == sourceContact) { // Throw NPE -- 2.39.5