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