Cleaning up.

This commit is contained in:
Johannes Mockenhaupt 2017-10-17 19:08:56 +02:00
parent 5ab7e4dbd6
commit 64ecf84174
No known key found for this signature in database
GPG key ID: 9E1EA6AF7BBBB0D1
3 changed files with 2 additions and 12 deletions

View file

@ -10,7 +10,7 @@ public class CommandResult {
public Exception exception; public Exception exception;
public String message; public String message;
public PumpState state; public PumpState state;
public History history; public PumpHistory history;
public String duration; public String duration;
public CommandResult() { public CommandResult() {
@ -56,7 +56,7 @@ public class CommandResult {
return this; return this;
} }
public CommandResult history(History history) { public CommandResult history(PumpHistory history) {
this.history = history; this.history = history;
return this; return this;
} }

View file

@ -1,7 +0,0 @@
package info.nightscout.androidaps.plugins.PumpCombo.spi;
/**
* The history data read from "My data"
*/
public class History {
}

View file

@ -2,9 +2,6 @@ package info.nightscout.androidaps.plugins.PumpCombo.spi;
import java.util.Date; import java.util.Date;
/**
* Main entry point for clients, implemented by RuffyScripter.
*/
public interface RuffyCommands { public interface RuffyCommands {
CommandResult deliverBolus(double amount, BolusProgressReporter bolusProgressReporter); CommandResult deliverBolus(double amount, BolusProgressReporter bolusProgressReporter);