Cleaning up.
This commit is contained in:
parent
5ab7e4dbd6
commit
64ecf84174
3 changed files with 2 additions and 12 deletions
|
@ -10,7 +10,7 @@ public class CommandResult {
|
|||
public Exception exception;
|
||||
public String message;
|
||||
public PumpState state;
|
||||
public History history;
|
||||
public PumpHistory history;
|
||||
public String duration;
|
||||
|
||||
public CommandResult() {
|
||||
|
@ -56,7 +56,7 @@ public class CommandResult {
|
|||
return this;
|
||||
}
|
||||
|
||||
public CommandResult history(History history) {
|
||||
public CommandResult history(PumpHistory history) {
|
||||
this.history = history;
|
||||
return this;
|
||||
}
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
package info.nightscout.androidaps.plugins.PumpCombo.spi;
|
||||
|
||||
/**
|
||||
* The history data read from "My data"
|
||||
*/
|
||||
public class History {
|
||||
}
|
|
@ -2,9 +2,6 @@ package info.nightscout.androidaps.plugins.PumpCombo.spi;
|
|||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* Main entry point for clients, implemented by RuffyScripter.
|
||||
*/
|
||||
public interface RuffyCommands {
|
||||
CommandResult deliverBolus(double amount, BolusProgressReporter bolusProgressReporter);
|
||||
|
||||
|
|
Loading…
Reference in a new issue