Make CommandResult.delivered the primitive it always should've been.

This commit is contained in:
Johannes Mockenhaupt 2017-12-09 16:33:43 +01:00
parent d18fdc4974
commit d3926f64c8
No known key found for this signature in database
GPG key ID: 9E1EA6AF7BBBB0D1

View file

@ -14,7 +14,7 @@ public class CommandResult {
/** State of the pump *after* command execution. */
public PumpState state;
/** Bolus actually delivered if request was a bolus command. */
public Double delivered;
public double delivered;
/** History if requested by the command. */
@Nullable
public PumpHistory history;