From: Roland Häder Date: Fri, 27 Apr 2018 22:50:06 +0000 (+0200) Subject: Continued: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4c72e60b663ded0ab49815ef82114b7fc73a674d;p=jcountry-core.git Continued: - "created" timestamps should never be copied Signed-off-by: Roland Häder --- diff --git a/src/org/mxchange/jcountry/model/data/Countries.java b/src/org/mxchange/jcountry/model/data/Countries.java index 15fdc95..faf2ccf 100644 --- a/src/org/mxchange/jcountry/model/data/Countries.java +++ b/src/org/mxchange/jcountry/model/data/Countries.java @@ -52,7 +52,6 @@ public class Countries implements Serializable { // Copy all fields targetCountry.setCountryAbroadDialPrefix(sourceCountry.getCountryAbroadDialPrefix()); targetCountry.setCountryCode(sourceCountry.getCountryCode()); - targetCountry.setCountryEntryCreated(sourceCountry.getCountryEntryCreated()); targetCountry.setCountryExternalDialPrefix(sourceCountry.getCountryExternalDialPrefix()); targetCountry.setCountryI18nKey(sourceCountry.getCountryI18nKey()); targetCountry.setCountryId(sourceCountry.getCountryId());