X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fext%2Fandroid%2FSparseDoubleArray.java;fp=src%2Fjalview%2Fext%2Fandroid%2FSparseDoubleArray.java;h=7b8b0309909edd40d3d99398455755ca80dc4920;hb=3659ecfe7bb17dd25a0a6b5c94a7d9dab4525136;hp=ea6265fbaaa82be5bc2748d38dc23dab680edad2;hpb=5d49f772d8dd53aba8907f37a244b00ed8f86a87;p=jalview.git diff --git a/src/jalview/ext/android/SparseDoubleArray.java b/src/jalview/ext/android/SparseDoubleArray.java index ea6265f..7b8b030 100644 --- a/src/jalview/ext/android/SparseDoubleArray.java +++ b/src/jalview/ext/android/SparseDoubleArray.java @@ -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--; }