summaryrefslogtreecommitdiff
path: root/tests/src/de/danoeh/antennapod
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2013-05-19 17:32:15 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2013-05-19 17:32:15 +0200
commita704a33e2b31a7312f35f33251faaf1017b982d9 (patch)
treefa1d8ed645485f1ff8f8220671fc199abc8fc8a4 /tests/src/de/danoeh/antennapod
parent11fb8589090d0715bb907b5f1e2c77644e3c86ff (diff)
downloadAntennaPod-a704a33e2b31a7312f35f33251faaf1017b982d9.zip
Split DownloadStatus into two separate classes
DownloadStatus is now used only for finished downloads, whereas DownloadRequest is used for running/unfinished downloads
Diffstat (limited to 'tests/src/de/danoeh/antennapod')
-rw-r--r--tests/src/de/danoeh/antennapod/test/HttpDownloaderTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/de/danoeh/antennapod/test/HttpDownloaderTest.java b/tests/src/de/danoeh/antennapod/test/HttpDownloaderTest.java
index 24d48bce4..470a08881 100644
--- a/tests/src/de/danoeh/antennapod/test/HttpDownloaderTest.java
+++ b/tests/src/de/danoeh/antennapod/test/HttpDownloaderTest.java
@@ -6,8 +6,8 @@ import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
-import de.danoeh.antennapod.asynctask.DownloadStatus;
import de.danoeh.antennapod.feed.Feed;
+import de.danoeh.antennapod.service.download.DownloadStatus;
import de.danoeh.antennapod.service.download.Downloader;
import de.danoeh.antennapod.service.download.DownloaderCallback;
import de.danoeh.antennapod.service.download.HttpDownloader;