Bug 1081601: Stop copying arrays manually. r=rnewman

This commit is contained in:
Chris Kitching 2014-10-12 02:26:13 +01:00
Родитель f819ee4974
Коммит 53b5941b4f
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -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;