summaryrefslogtreecommitdiff
path: root/src/de/podfetcher/feed/FeedImage.java
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-07-13 12:23:47 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-07-13 12:23:47 +0200
commitba2d2afbbc6cbb79fc75493703425b5d6d040530 (patch)
treee731a1209160e8224679cb238c0a964c3e757590 /src/de/podfetcher/feed/FeedImage.java
parent1ae00a0f2531fdb05a44877dda88ee2300e3ffec (diff)
downloadAntennaPod-ba2d2afbbc6cbb79fc75493703425b5d6d040530.zip
Renamed package and application
Diffstat (limited to 'src/de/podfetcher/feed/FeedImage.java')
-rw-r--r--src/de/podfetcher/feed/FeedImage.java32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/de/podfetcher/feed/FeedImage.java b/src/de/podfetcher/feed/FeedImage.java
deleted file mode 100644
index 918e6b78b..000000000
--- a/src/de/podfetcher/feed/FeedImage.java
+++ /dev/null
@@ -1,32 +0,0 @@
-package de.podfetcher.feed;
-
-
-public class FeedImage extends FeedFile {
- protected String title;
-
- public FeedImage(String download_url, String title) {
- super(null, download_url, false);
- this.download_url = download_url;
- this.title = title;
- }
-
- public FeedImage(long id, String title, String file_url,
- String download_url, boolean downloaded) {
- super(file_url, download_url, downloaded);
- this.id = id;
- this.title = title;
- }
-
- public FeedImage() {
- super();
- }
-
- public String getTitle() {
- return title;
- }
-
- public void setTitle(String title) {
- this.title = title;
- }
-
-}