Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2ae1b0f3 authored by Andre Eisenbach's avatar Andre Eisenbach Committed by android-build-merger
Browse files

Merge "Fix bad index usage" am: 5cfe8a83 am: 83272db4 am: 4184bab4

am: de5ad04c

Change-Id: I096f59ffeb24844413ca85dbfa0c9585246870cf
parents 22c5d4ea de5ad04c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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());
                    }
                }