1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-23 13:30:48 +02:00

Forgot to rename that method, too (#42)

This commit is contained in:
cpfeiffer 2015-06-21 20:59:36 +02:00
parent 23d91ac79e
commit 39db968e34
2 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ public abstract class AbstractBTDeviceSupport extends AbstractDeviceSupport {
@Override
public void onFindDevice(boolean start) {
byte[] bytes = gbDeviceProtocol.encodeLocateDevice(start);
byte[] bytes = gbDeviceProtocol.encodeFindDevice(start);
sendToDevice(bytes);
}
}

View File

@ -62,7 +62,7 @@ public abstract class GBDeviceProtocol {
return null;
}
public byte[] encodeLocateDevice(boolean start) {
public byte[] encodeFindDevice(boolean start) {
return null;
}