mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
Remove BatteryStat:initCurrentState()
This commit is contained in:
@@ -108,7 +108,10 @@ function BatteryStat:init()
|
||||
-- the unaccumulated values.
|
||||
self.charging_state = State:new(self.settings:readSetting("charging_state"))
|
||||
self.awake_state = State:new(self.settings:readSetting("awake_state"))
|
||||
self:initCurrentState()
|
||||
-- Whether the device was suspending before current timestamp.
|
||||
self.was_suspending = false
|
||||
-- Whether the device was charging before current timestamp.
|
||||
self.was_charging = PowerD:isCharging()
|
||||
|
||||
if self.debugging then
|
||||
self.debugOutput = self._debugOutput
|
||||
@@ -117,13 +120,6 @@ function BatteryStat:init()
|
||||
end
|
||||
end
|
||||
|
||||
function BatteryStat:initCurrentState()
|
||||
-- Whether the device was suspending before current timestamp.
|
||||
self.was_suspending = false
|
||||
-- Whether the device was charging before current timestamp.
|
||||
self.was_charging = PowerD:isCharging()
|
||||
end
|
||||
|
||||
function BatteryStat:onFlushSettings()
|
||||
self.settings:reset({
|
||||
charging = self.charging,
|
||||
@@ -197,7 +193,6 @@ function BatteryStat:onNotCharging()
|
||||
end
|
||||
|
||||
function BatteryStat:showStatistics()
|
||||
self:initCurrentState()
|
||||
self:accumulate()
|
||||
local kv_pairs = self:dump()
|
||||
table.insert(kv_pairs, "----------")
|
||||
|
||||
Reference in New Issue
Block a user