Add TODOs

This commit is contained in:
Bart Sopers 2019-12-04 17:21:37 +01:00
parent db066f7cf7
commit 8c07e747d4
2 changed files with 2 additions and 0 deletions

View file

@ -1,5 +1,6 @@
package info.nightscout.androidaps.plugins.pump.omnipod.comm; package info.nightscout.androidaps.plugins.pump.omnipod.comm;
// TODO replace with Consumer when our min API level >= 24
@FunctionalInterface @FunctionalInterface
public interface SetupActionResultHandler { public interface SetupActionResultHandler {
void handle(SetupActionResult result); void handle(SetupActionResult result);

View file

@ -2,6 +2,7 @@ package info.nightscout.androidaps.plugins.pump.omnipod.comm;
import info.nightscout.androidaps.plugins.pump.omnipod.comm.message.response.StatusResponse; import info.nightscout.androidaps.plugins.pump.omnipod.comm.message.response.StatusResponse;
// TODO replace with Consumer when our min API level >= 24
@FunctionalInterface @FunctionalInterface
public interface StatusResponseHandler { public interface StatusResponseHandler {
void handle(StatusResponse statusResponse); void handle(StatusResponse statusResponse);