From 3ea620c7285f16af659a248d6f80827fda652529 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 18 Apr 2020 15:42:49 +0200 Subject: [PATCH] Continued: - renamed copyFoo() 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/jcountry/model/data/Countries.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/mxchange/jcountry/model/data/Countries.java b/src/org/mxchange/jcountry/model/data/Countries.java index 89a5b00..44676cd 100644 --- a/src/org/mxchange/jcountry/model/data/Countries.java +++ b/src/org/mxchange/jcountry/model/data/Countries.java @@ -40,7 +40,7 @@ public class Countries implements Serializable { * @throws NullPointerException If sourceCountry or targetCountry is null * @throws IllegalArgumentException If both Country instances are equal */ - public static void copyCountry (final Country sourceCountry, final Country targetCountry) { + public static void copyCountryData (final Country sourceCountry, final Country targetCountry) { // Parameters should not be null if (null == sourceCountry) { // Throw NPE -- 2.39.5