Allow for larger flag values.

This commit is contained in:
boy0001 2015-04-11 21:34:00 +10:00
parent da5db1678d
commit 9a9e00670c

View File

@ -44,8 +44,8 @@ public class Flag {
if (!StringUtils.isAlphanumericSpace(tempValue)) { if (!StringUtils.isAlphanumericSpace(tempValue)) {
throw new IllegalArgumentException("Flag must be alphanumerical (colours and some special characters are allowed)"); throw new IllegalArgumentException("Flag must be alphanumerical (colours and some special characters are allowed)");
} }
if (value.length() > 48) { if (value.length() > 128) {
throw new IllegalArgumentException("Value must be <= 48 characters"); throw new IllegalArgumentException("Value must be <= 128 characters");
} }
this.key = key; this.key = key;
this.value = key.parseValueRaw(value); this.value = key.parseValueRaw(value);