Merge commit '934516e10150874fd1db5ab9e0be3ae793441fd8' into gingerbread-plus-aosp * commit '934516e10150874fd1db5ab9e0be3ae793441fd8': Fix issue #2999795: Runtime restart on Crespo
This commit is contained in:
@@ -190,7 +190,7 @@ public class WorkSource implements Parcelable {
|
||||
for (int i2=0; i2<N2 && i1<N1; i2++) {
|
||||
if (uids2[i2] == uids1[i1]) {
|
||||
N1--;
|
||||
if (i1 < N1) System.arraycopy(uids1, i1, uids1, i1-1, N1-i1);
|
||||
if (i1 < N1) System.arraycopy(uids1, i1+1, uids1, i1, N1-i1);
|
||||
}
|
||||
while (i1 < N1 && uids2[i2] > uids1[i1]) {
|
||||
i1++;
|
||||
|
||||
Reference in New Issue
Block a user