JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / ext / android / SparseDoubleArray.java
index ea6265f..7b8b030 100644 (file)
@@ -183,8 +183,8 @@ public class SparseDoubleArray 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--;
   }