remove force disable

This commit is contained in:
MajorCrazed
2017-11-06 16:56:30 +01:00
parent 15fa44c1b1
commit 7e9153bd81
2 changed files with 3 additions and 16 deletions

View File

@@ -12,19 +12,7 @@ import javax.annotation.concurrent.Immutable;
@Immutable
@NotNullByDefault
public class DisableBluetoothEvent extends BluetoothEvent {
private boolean force;
public DisableBluetoothEvent(BluetoothEnableDisableReason reason) {
super(reason);
force = false;
}
public DisableBluetoothEvent(boolean force){
super(null);
this.force = force;
}
public boolean isForced(){
return force;
}
}