Remove a couple of extra semicolons

This commit is contained in:
Gabriele M
2017-07-18 22:15:13 +02:00
parent 6f1861abe0
commit 82dbc8fde3
2 changed files with 2 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ class ABUpdateInstaller {
UpdateDownload update = mUpdaterController.getActualUpdate(mDownloadId); UpdateDownload update = mUpdaterController.getActualUpdate(mDownloadId);
update.setInstallProgress(0); update.setInstallProgress(0);
update.setStatus(UpdateStatus.INSTALLATION_FAILED); update.setStatus(UpdateStatus.INSTALLATION_FAILED);
mUpdaterController.notifyUpdateChange(mDownloadId);; mUpdaterController.notifyUpdateChange(mDownloadId);
} }
break; break;
} }

View File

@@ -63,7 +63,7 @@ public class UpdaterService extends Service {
private BroadcastReceiver mBroadcastReceiver; private BroadcastReceiver mBroadcastReceiver;
private NotificationCompat.Builder mNotificationBuilder; private NotificationCompat.Builder mNotificationBuilder;
private NotificationManager mNotificationManager; private NotificationManager mNotificationManager;
private NotificationCompat.BigTextStyle mNotificationStyle;; private NotificationCompat.BigTextStyle mNotificationStyle;
private UpdaterController mUpdaterController; private UpdaterController mUpdaterController;