JAL-3438 spotless for 2.11.2.0
[jalview.git] / test / jalview / datamodel / AllRowsIteratorTest.java
index 90ed891..9f4c65b 100644 (file)
@@ -69,8 +69,10 @@ public class AllRowsIteratorTest
    * Test iterator throws NoSuchElementException at end of iteration
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { NoSuchElementException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { NoSuchElementException.class })
   public void testLastNext() throws NoSuchElementException
   {
     AllRowsIterator it = new AllRowsIterator(0, 3, al);
@@ -85,15 +87,16 @@ public class AllRowsIteratorTest
    * Test iterator throws UnsupportedOperationException on call to remove
    */
   @Test(
-    groups = { "Functional" },
-    expectedExceptions = { UnsupportedOperationException.class })
+    groups =
+    { "Functional" },
+    expectedExceptions =
+    { UnsupportedOperationException.class })
   public void testRemove() throws UnsupportedOperationException
   {
     AllRowsIterator it = new AllRowsIterator(0, 3, al);
     it.remove();
   }
 
-
   /*
    * Hide sequences between start and end
    */