Reputation: 3290
I've been working with Android BLE classes for 5 or 6 month, i've quite understood how everything works.
Today I noticed that in the BluetoothGatt Callback methods are included super methods like super.onCharacteristicRead(gatt, characteristic, status);
My question now is, what do they do? I've never noticed any difference between working with them or without them.
Upvotes: 0
Views: 320
Reputation: 18442
There is no need to call the parent methods since they do nothing. Where exactly have you seen this?
Upvotes: 1