JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / ext / android / SparseIntArray.java
index d67121b..6344092 100644 (file)
@@ -166,8 +166,8 @@ public class SparseIntArray implements Cloneable
   public void removeAt(int index)
   {
     System.arraycopy(mKeys, index + 1, mKeys, index, mSize - (index + 1));
-    System.arraycopy(mValues, index + 1, mValues, index, mSize
-            - (index + 1));
+    System.arraycopy(mValues, index + 1, mValues, index,
+            mSize - (index + 1));
     mSize--;
   }
 
@@ -436,16 +436,16 @@ public class SparseIntArray implements Cloneable
     {
       if (value > 0 && Integer.MAX_VALUE - value < addend)
       {
-        throw new ArithmeticException("Integer overflow adding " + addend
-                + " to  " + value);
+        throw new ArithmeticException(
+                "Integer overflow adding " + addend + " to  " + value);
       }
     }
     else if (addend < 0)
     {
       if (value < 0 && Integer.MIN_VALUE - value > addend)
       {
-        throw new ArithmeticException("Integer underflow adding " + addend
-                + " to  " + value);
+        throw new ArithmeticException(
+                "Integer underflow adding " + addend + " to  " + value);
       }
     }
   }