mark BleCommand as abstract

This commit is contained in:
Andrei Vereha 2021-02-23 21:41:20 +01:00
parent fa8fdd9816
commit d9cebbbad7

View file

@ -2,7 +2,7 @@ package info.nightscout.androidaps.plugins.pump.omnipod.dash.driver.comm.blecomm
import org.jetbrains.annotations.NotNull;
public class BleCommand {
public abstract class BleCommand {
private final byte[] data;
public BleCommand(@NotNull BleCommandType type) {