Added lower case value for country code in property checker.
This commit is contained in:
parent
41061a791a
commit
56ac707b17
1 changed files with 1 additions and 1 deletions
|
@ -46,7 +46,7 @@ public class PropertyChecker
|
|||
public static final String MONTHS = "^\\d*(,\\d*){0,11}$";
|
||||
public static final String WEEKS = "^\\d*(,\\d*){0,52}$";
|
||||
public static final String DAYS = "^\\d*(,\\d*){0,365}$";
|
||||
public static final String COUNTRY_CODE = "^[A-Z]{2}$";
|
||||
public static final String COUNTRY_CODE = "^[a-z][A-Z]{2}$";
|
||||
|
||||
public static final String SUBS = "^subs\\.\\S+$";
|
||||
public static final String METRICS_NAME = "^metrics\\.\\S+\\.name$";
|
||||
|
|
Loading…
Reference in a new issue