JAL-1739 reverted BioJSON schema to use one main version for the whole schema and...
[jalview.git] / src / jalview / json / binding / biojson / v1 / AlignmentAnnotationPojo.java
index 6f21a2a..9fd712f 100644 (file)
@@ -7,8 +7,6 @@ import com.github.reinert.jjschema.Attributes;
 
 public class AlignmentAnnotationPojo
 {
-  @Attributes(required = true, description = "Serial version id for the alignAnnotation object model")
-  private String svid = "1.0";
 
   @Attributes(required = false, description = "Label for the Alignment Annotation")
   private String label;
@@ -49,9 +47,6 @@ public class AlignmentAnnotationPojo
     this.annotations = annotations;
   }
 
-  public String getSvid()
-  {
-    return svid;
-  }
+
 
 }