From: Roland Haeder Date: Mon, 11 Apr 2016 17:53:46 +0000 (+0200) Subject: Handle over the updated country instance to avoid NPE (countryId must be set) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=fb46c92c7e0d618e1a738f7e2f03305dd665ebc3;p=jjobs-war.git Handle over the updated country instance to avoid NPE (countryId must be set) --- diff --git a/src/java/org/mxchange/jjobs/beans/country/JobsAdminCountryWebApplicationBean.java b/src/java/org/mxchange/jjobs/beans/country/JobsAdminCountryWebApplicationBean.java index ce28ecfd..40f82021 100644 --- a/src/java/org/mxchange/jjobs/beans/country/JobsAdminCountryWebApplicationBean.java +++ b/src/java/org/mxchange/jjobs/beans/country/JobsAdminCountryWebApplicationBean.java @@ -135,10 +135,10 @@ public class JobsAdminCountryWebApplicationBean implements JobsAdminCountryWebAp try { // Send country to bean - this.countryBean.addCountry(country); + Country updatedCountry = this.countryBean.addCountry(country); // Fire event - this.addedCountryEvent.fire(new AdminEventCountryAdded(country)); + this.addedCountryEvent.fire(new AdminEventCountryAdded(updatedCountry)); // Clear bean this.clear();