зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1081601: Stop copying arrays manually. r=rnewman
This commit is contained in:
Родитель
f819ee4974
Коммит
53b5941b4f
|
@ -247,9 +247,7 @@ public class ContactService implements GeckoEventListener {
|
|||
// Truncate the raw contacts IDs array if necessary
|
||||
if (filterLimit > 0 && allRawContactIds.length > filterLimit) {
|
||||
long[] truncatedRawContactIds = new long[filterLimit];
|
||||
for (int i = 0; i < filterLimit; i++) {
|
||||
truncatedRawContactIds[i] = allRawContactIds[i];
|
||||
}
|
||||
System.arraycopy(allRawContactIds, 0, truncatedRawContactIds, 0, filterLimit);
|
||||
return truncatedRawContactIds;
|
||||
}
|
||||
return allRawContactIds;
|
||||
|
|
Загрузка…
Ссылка в новой задаче