]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/output/CountrySelector.java
upd: replace the word state by country when used in country context
[gigi.git] / src / org / cacert / gigi / output / CountrySelector.java
index c58600a74bd961a0f60310d494b717dafcc31a3c..bb1fab920e661dca205f49173c59fe54413161da 100644 (file)
@@ -30,9 +30,9 @@ public class CountrySelector implements Outputable {
         this.optional = optional;
     }
 
-    public CountrySelector(String name, boolean optional, Country state) {
+    public CountrySelector(String name, boolean optional, Country country) {
         this(name, optional);
-        selected = state;
+        selected = country;
     }
 
     public void update(HttpServletRequest r) throws GigiApiException {