Minor cleanups.
This commit is contained in:
parent
0e61032dec
commit
f970e5e20e
3 changed files with 2 additions and 10 deletions
|
@ -477,7 +477,7 @@ public class ComboPlugin implements PluginBase, PumpInterface, ConstraintsInterf
|
||||||
return new PumpEnactResult().success(true).enacted(false);
|
return new PumpEnactResult().success(true).enacted(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
BolusProgressReporter progressReporter = detailedBolusInfo.isSMB ? nullBolusProgressReporter : ComboPlugin.bolusProgressReporter;
|
BolusProgressReporter progressReporter = detailedBolusInfo.isSMB ? nullBolusProgressReporter : bolusProgressReporter;
|
||||||
|
|
||||||
// start bolus delivery
|
// start bolus delivery
|
||||||
bolusInProgress = true;
|
bolusInProgress = true;
|
||||||
|
|
|
@ -1,10 +1,3 @@
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
|
||||||
package="de.jotomo.ruffy">
|
package="de.jotomo.ruffy">
|
||||||
|
|
||||||
<!--<application android:allowBackup="true" android:label="ruffy-spi"-->
|
|
||||||
<!--android:supportsRtl="true">-->
|
|
||||||
|
|
||||||
<!--</application>-->
|
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|
|
@ -7,8 +7,7 @@ public interface BolusProgressReporter {
|
||||||
DELIVERED,
|
DELIVERED,
|
||||||
STOPPING,
|
STOPPING,
|
||||||
STOPPED,
|
STOPPED,
|
||||||
RECOVERING,
|
RECOVERING
|
||||||
FINISHED
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void report(State state, int percent, double delivered);
|
void report(State state, int percent, double delivered);
|
||||||
|
|
Loading…
Reference in a new issue