1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-07-24 07:38:45 +02:00

fixed missing function

This commit is contained in:
dakhnod 2019-10-20 01:44:35 +02:00
parent 2a96f762af
commit 30488989b1

View File

@ -48,4 +48,8 @@ public abstract class Request {
protected void log(String message){
Log.d(getName(), message);
}
public boolean expectsResponse(){
return this.data[0] == 1;
}
}