JAL-3438 spotless for 2.11.2.0
[jalview.git] / test / jalview / analysis / AnnotationSorterTest.java
index 1c5a7f9..11c42ed 100644 (file)
@@ -291,9 +291,9 @@ public class AnnotationSorterTest
     testee.sort(annotations, SequenceAnnotationOrder.LABEL_AND_SEQUENCE);
     long endTime = System.currentTimeMillis();
     final long elapsed = endTime - startTime;
-    System.out.println("Timing test for presorted " + numSeqs
-            + " sequences and " + numAnns + " annotations took " + elapsed
-            + "ms");
+    System.out.println(
+            "Timing test for presorted " + numSeqs + " sequences and "
+                    + numAnns + " annotations took " + elapsed + "ms");
   }
 
   /**
@@ -335,9 +335,9 @@ public class AnnotationSorterTest
     testee.sort(annotations, SequenceAnnotationOrder.SEQUENCE_AND_LABEL);
     long endTime = System.currentTimeMillis();
     final long elapsed = endTime - startTime;
-    System.out.println("Timing test for unsorted " + numSeqs
-            + " sequences and " + numAnns + " annotations took " + elapsed
-            + "ms");
+    System.out.println(
+            "Timing test for unsorted " + numSeqs + " sequences and "
+                    + numAnns + " annotations took " + elapsed + "ms");
   }
 
   /**
@@ -369,8 +369,8 @@ public class AnnotationSorterTest
     Alignment alignment = buildAlignment(numSeqs);
     AlignmentAnnotation[] annotations = buildAnnotations(numAnns);
 
-    String[] labels = new String[] { "label1", "label2", "label3",
-        "label4", "label5", "label6" };
+    String[] labels = new String[] { "label1", "label2", "label3", "label4",
+        "label5", "label6" };
 
     /*
      * Set the annotations in sequence order with randomly assigned labels.
@@ -388,9 +388,9 @@ public class AnnotationSorterTest
     testee.sort(annotations, SequenceAnnotationOrder.LABEL_AND_SEQUENCE);
     long endTime = System.currentTimeMillis();
     long elapsed = endTime - startTime;
-    System.out.println("Sort by label for semisorted " + numSeqs
-            + " sequences and " + numAnns + " annotations took " + elapsed
-            + "ms");
+    System.out.println(
+            "Sort by label for semisorted " + numSeqs + " sequences and "
+                    + numAnns + " annotations took " + elapsed + "ms");
 
     // now resort by sequence
     startTime = System.currentTimeMillis();
@@ -406,8 +406,8 @@ public class AnnotationSorterTest
     testee.sort(annotations, SequenceAnnotationOrder.LABEL_AND_SEQUENCE);
     endTime = System.currentTimeMillis();
     elapsed = endTime - startTime;
-    System.out.println("Resort by label for semisorted " + numSeqs
-            + " sequences and " + numAnns + " annotations took " + elapsed
-            + "ms");
+    System.out.println(
+            "Resort by label for semisorted " + numSeqs + " sequences and "
+                    + numAnns + " annotations took " + elapsed + "ms");
   }
 }