JAL-1645 source formatting and organise imports
[jalview.git] / src / jalview / json / binding / biojson / v1 / AlignmentAnnotationPojo.java
index 6f21a2a..6b9cf42 100644 (file)
@@ -7,13 +7,15 @@ 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")
+  @Attributes(
+    required = false,
+    description = "Label for the Alignment Annotation")
   private String label;
 
-  @Attributes(required = false, description = "Description for the Alignment Annotation")
+  @Attributes(
+    required = false,
+    description = "Description for the Alignment Annotation")
   private String description;
 
   @Attributes(required = false)
@@ -49,9 +51,4 @@ public class AlignmentAnnotationPojo
     this.annotations = annotations;
   }
 
-  public String getSvid()
-  {
-    return svid;
-  }
-
 }