Remove not null check on 'this' (not null by definition)
This commit is contained in:
parent
a5c4b2d811
commit
4e298a9f1e
1 changed files with 1 additions and 2 deletions
|
@ -257,8 +257,7 @@ public class DownloadImagesService extends IntentService {
|
|||
|
||||
if(maxCount == count) {
|
||||
notificationManager.cancel(NOTIFICATION_ID);
|
||||
if(DownloadImagesService.this != null)
|
||||
RemoveOldImages(DownloadImagesService.this);
|
||||
RemoveOldImages(DownloadImagesService.this);
|
||||
} else {
|
||||
NotificationDownloadImages.setProgress(maxCount, count+1, false);
|
||||
NotificationDownloadImages.setContentText("Downloading Images for offline usage - " + (count+1) + "/" + maxCount);
|
||||
|
|
Loading…
Reference in a new issue