From fb46c92c7e0d618e1a738f7e2f03305dd665ebc3 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Mon, 11 Apr 2016 19:53:46 +0200 Subject: [PATCH] Handle over the updated country instance to avoid NPE (countryId must be set) --- .../beans/country/JobsAdminCountryWebApplicationBean.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); -- 2.39.5