Fix bad index usage

Bug: 27999121
Change-Id: Ie2ba6f71bbf6f789a3c1016ba2f0051b809ac87e
This commit is contained in:
Jakub Pawlowski
2016-08-04 13:16:32 -07:00
committed by Andre Eisenbach
parent a11a8e5086
commit d167db19a9

View File

@@ -133,7 +133,7 @@ public final class BluetoothGattServer implements BluetoothProfile {
List<BluetoothGattDescriptor> temp_descs = temp_char.getDescriptors();
List<BluetoothGattDescriptor> svc_descs = svc_char.getDescriptors();
for (int j=0; j<svc_descs.size(); j++) {
temp_descs.get(i).setInstanceId(svc_descs.get(i).getInstanceId());
temp_descs.get(j).setInstanceId(svc_descs.get(j).getInstanceId());
}
}