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=3459a8a691cb22508d7067f240b7254e588e77d3;hp=ea6265fbaaa82be5bc2748d38dc23dab680edad2;hpb=5b27f1062b2203c4c31702e205f4c78e1992063e;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--; }