JAL-1645 source formatting and organise imports
[jalview.git] / test / jalview / util / ShiftListTest.java
index eae2811..abe5534 100644 (file)
@@ -11,18 +11,16 @@ import org.testng.annotations.Test;
 public class ShiftListTest
 {
 
-  @Test(groups ={ "Functional" })
+  @Test(groups = { "Functional" })
   public void testParseMap()
   {
     assertNull(ShiftList.parseMap(null));
-    assertNull(ShiftList.parseMap(new int[]
-    {}));
-    
+    assertNull(ShiftList.parseMap(new int[] {}));
+
     /*
      * Gap map showing residues in aligned positions 2,3,6,8,9,10,12
      */
-    int[] gm = new int[]
-    { 2, 3, 6, 8, 9, 10, 12 };
+    int[] gm = new int[] { 2, 3, 6, 8, 9, 10, 12 };
     List<int[]> shifts = ShiftList.parseMap(gm).getShifts();
     assertEquals(4, shifts.size());