Fix build after dev merge

This commit is contained in:
Philoul 2022-07-17 17:40:32 +02:00
parent 4112b909f1
commit 954a3118db
2 changed files with 2 additions and 2 deletions

View file

@ -149,7 +149,7 @@ class AutotunePlugin @Inject constructor(
autotuneFS.exportResult(result) autotuneFS.exportResult(result)
autotuneFS.exportLogAndZip(lastRun) autotuneFS.exportLogAndZip(lastRun)
rxBus.send(EventAutotuneUpdateGui()) rxBus.send(EventAutotuneUpdateGui())
return result return
} }
var currentCalcDay = 0 var currentCalcDay = 0
for (i in 0 until daysBack) { for (i in 0 until daysBack) {

View file

@ -2,7 +2,7 @@ package info.nightscout.androidaps.interfaces
interface Autotune { interface Autotune {
fun aapsAutotune(daysBack: Int, autoSwitch: Boolean, profileToTune: String = "", days: BooleanArray? = null) fun aapsAutotune(daysBack: Int, autoSwitch: Boolean, profileToTune: String = "", weekDays: BooleanArray? = null)
fun atLog(message: String) fun atLog(message: String)
var lastRunSuccess: Boolean var lastRunSuccess: Boolean