Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -29,7 +29,7 @@ public class AddCountryView implements Serializable { | ... | @@ -29,7 +29,7 @@ public class AddCountryView implements Serializable { |
29 | public void add() { | 29 | public void add() { |
30 | Country country = new Country(); | 30 | Country country = new Country(); |
31 | country.setCountryName(countryName); | 31 | country.setCountryName(countryName); |
32 | - country = sharedService.addCountry(country); | 32 | + sharedService.addCountry(country); |
33 | countryName = ""; | 33 | countryName = ""; |
34 | } | 34 | } |
35 | 35 | ... | ... |
-
Please register or login to post a comment