JAL-1645 source formatting and organise imports
[jalview.git] / src / jalview / json / binding / biojson / v1 / AlignmentAnnotationPojo.java
index 9fd712f..6b9cf42 100644 (file)
@@ -8,10 +8,14 @@ import com.github.reinert.jjschema.Attributes;
 public class AlignmentAnnotationPojo
 {
 
-  @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)
@@ -47,6 +51,4 @@ public class AlignmentAnnotationPojo
     this.annotations = annotations;
   }
 
-
-
 }