JAL-1831 update all maxItems annotation to the max value for a 32-bit signed binary...
[jalview.git] / src / jalview / json / binding / biojson / v1 / SequenceGrpPojo.java
index 63bc426..4bc6e3b 100644 (file)
@@ -36,7 +36,12 @@ public class SequenceGrpPojo
   @Attributes(required = true, description = "The index of the group’s last residue in the alignment space")
   private int endRes;
   
-  @Attributes(required = true, minItems = 1, maxItems = 1999999999, uniqueItems=true, description = "An array of the unique id's for the sequences belonging to the group")  
+  @Attributes(
+    required = true,
+    minItems = 1,
+    maxItems = 2147483647,
+    uniqueItems = true,
+    description = "An array of the unique id's for the sequences belonging to the group")
   private ArrayList<String> sequenceRefs = new ArrayList<String>();
 
   public String getColourScheme()