Jean-Francois Leveque

Valeur inutilisée.

...@@ -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
......