Rename misnamed file.

here
danielegobbetti 2015-12-19 14:36:28 +01:00
parent 9acdefd5c1
commit 9fb2e1620e
2 changed files with 3 additions and 3 deletions

View File

@ -176,7 +176,7 @@ public class MiBandSupport extends AbstractBTLEDeviceSupport {
private NotificationStrategy getNotificationStrategy() {
if (mDeviceInfo == null) {
// not initialized yet?
return new NoNotifcationStrategy();
return new NoNotificationStrategy();
}
if (mDeviceInfo.getFirmwareVersion() < MiBandFWHelper.FW_16779790) {
return new V1NotificationStrategy(this);

View File

@ -10,8 +10,8 @@ import nodomain.freeyourgadget.gadgetbridge.service.btle.TransactionBuilder;
/**
* Does not do anything.
*/
public class NoNotifcationStrategy implements NotificationStrategy {
private static final Logger LOG = LoggerFactory.getLogger(NoNotifcationStrategy.class);
public class NoNotificationStrategy implements NotificationStrategy {
private static final Logger LOG = LoggerFactory.getLogger(NoNotificationStrategy.class);
@Override
public void sendDefaultNotification(TransactionBuilder builder, BtLEAction extraAction) {