JAL-3438 spotless for 2.11.2.0
[jalview.git] / test / jalview / ext / android / SparseShortArrayTest.java
index 034368f..0b11eb5 100644 (file)
@@ -94,7 +94,7 @@ public class SparseShortArrayTest
   public void testAdd()
   {
     SparseShortArray counter = new SparseShortArray();
-  
+
     assertEquals(counter.add('P', 2), 2);
     assertEquals(counter.add('P', 3), 5);
     counter.put('Q', 7);
@@ -110,7 +110,7 @@ public class SparseShortArrayTest
     {
       // expected;
     }
-  
+
     // decrement giving underflow
     counter.put('y', Short.MIN_VALUE);
     try