Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -13,9 +13,9 @@ import java.util.List; | ... | @@ -13,9 +13,9 @@ import java.util.List; |
13 | @RequestScoped | 13 | @RequestScoped |
14 | public class ListCountriesView implements Serializable { | 14 | public class ListCountriesView implements Serializable { |
15 | 15 | ||
16 | - private SharedService sharedService; | 16 | + private transient SharedService sharedService; |
17 | 17 | ||
18 | - private List<Country> countries; | 18 | + private transient List<Country> countries; |
19 | 19 | ||
20 | public ListCountriesView() { | 20 | public ListCountriesView() { |
21 | } | 21 | } | ... | ... |
-
Please register or login to post a comment