JAL-1645 source formatting and organise imports
[jalview.git] / test / jalview / datamodel / DBRefEntryTest.java
index f00cb38..665891d 100644 (file)
@@ -13,7 +13,7 @@ public class DBRefEntryTest
   /**
    * Tests for the method that compares equality of reference (but not mapping)
    */
-  @Test(groups ={ "Functional" })
+  @Test(groups = { "Functional" })
   public void testEqualRef()
   {
     DBRefEntry ref1 = new DBRefEntry("UNIPROT", "1", "V71633");
@@ -31,14 +31,12 @@ public class DBRefEntryTest
     assertFalse(ref1.equalRef(new DBRefEntry("UNIPROT", "1", "V71632")));
 
     // presence of or differences in mappings are ignored
-    ref1.setMap(new Mapping(new MapList(new int[]
-    { 1, 3 }, new int[]
-    { 1, 1 }, 3, 1)));
+    ref1.setMap(new Mapping(new MapList(new int[] { 1, 3 }, new int[] { 1,
+        1 }, 3, 1)));
     assertTrue(ref1.equalRef(ref2));
     assertTrue(ref2.equalRef(ref1));
-    ref1.setMap(new Mapping(new MapList(new int[]
-    { 1, 6 }, new int[]
-    { 1, 2 }, 3, 1)));
+    ref1.setMap(new Mapping(new MapList(new int[] { 1, 6 }, new int[] { 1,
+        2 }, 3, 1)));
     assertTrue(ref1.equalRef(ref2));
     assertTrue(ref2.equalRef(ref1));
   }