diff options
Diffstat (limited to 'subsonic-android/src')
-rw-r--r-- | subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java b/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java index ac989a68..aaa8c39c 100644 --- a/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java +++ b/subsonic-android/src/github/daneren2005/dsub/service/DownloadServiceImpl.java @@ -843,15 +843,15 @@ public class DownloadServiceImpl extends Service implements DownloadService { } } - @Override - public void setSleepTimerDuration(int duration){ - timerDuration = duration; - } + @Override + public void setSleepTimerDuration(int duration){ + timerDuration = duration; + } - @Override - public void setSleepTimerStatus(int status){ - timerStatus = status; - } + @Override + public void setSleepTimerStatus(int status){ + timerStatus = status; + } @Override public void startSleepTimer(){ @@ -886,7 +886,6 @@ public class DownloadServiceImpl extends Service implements DownloadService { } protected synchronized void checkDownloads() { - Log.d(TAG, "Start"); if (!Util.isExternalStoragePresent() || !lifecycleSupport.isExternalStorageAvailable()) { return; } @@ -902,7 +901,6 @@ public class DownloadServiceImpl extends Service implements DownloadService { if (downloadList.isEmpty() && backgroundDownloadList.isEmpty()) { return; } - Log.d(TAG, "Past Check"); // Need to download current playing? if (currentPlaying != null && currentPlaying != currentDownloading && !currentPlaying.isCompleteFileAvailable()) { |