HPlus: Rename HPlusHandlerThread method

here
João Paulo Barraca 2017-01-05 10:36:22 +00:00
parent 93ae57bd60
commit d491921b1c
2 changed files with 3 additions and 3 deletions

View File

@ -384,8 +384,8 @@ class HPlusHandlerThread extends GBDeviceIoThread {
}
public boolean processStepStats(byte[] data) {
LOG.debug("Process Step Stats");
public boolean processDaySummary(byte[] data) {
LOG.debug("Process Day Summary");
HPlusDataRecordDaySummary record;
try{

View File

@ -790,7 +790,7 @@ public class HPlusSupport extends AbstractBTLEDeviceSupport {
return syncHelper.processIncomingSleepData(data);
case HPlusConstants.DATA_STEPS:
return syncHelper.processStepStats(data);
return syncHelper.processDaySummary(data);
case HPlusConstants.DATA_DAY_SUMMARY:
case HPlusConstants.DATA_DAY_SUMMARY_ALT: