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=f0900b40bb762d5f24dfd27dbf22e80f981ac4ae;p=pizzaservice-war.git Handle over the updated country instance to avoid NPE (countryId must be set) --- diff --git a/src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebApplicationBean.java b/src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebApplicationBean.java index 2abe0aa1..17c2b3e2 100644 --- a/src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebApplicationBean.java +++ b/src/java/org/mxchange/pizzaapplication/beans/country/PizzaAdminCountryWebApplicationBean.java @@ -135,10 +135,10 @@ public class PizzaAdminCountryWebApplicationBean implements PizzaAdminCountryWeb 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();