diff --git a/src/de/danoeh/antennapod/feed/FeedItem.java b/src/de/danoeh/antennapod/feed/FeedItem.java index 2ac7fec63..71a327ee7 100644 --- a/src/de/danoeh/antennapod/feed/FeedItem.java +++ b/src/de/danoeh/antennapod/feed/FeedItem.java @@ -41,18 +41,6 @@ public class FeedItem extends FeedComponent { this.read = true; } - public FeedItem(String title, String description, String link, - Date pubDate, FeedMedia media, Feed feed) { - super(); - this.title = title; - this.description = description; - this.link = link; - this.pubDate = pubDate; - this.media = media; - this.feed = feed; - this.read = true; - } - /** Get the chapter that fits the position. */ public Chapter getCurrentChapter(int position) { Chapter current = null;