Removed unused constructor

This commit is contained in:
daniel oeh 2012-10-27 22:16:07 +02:00
parent 6fc11c7bae
commit fb4ba95789
1 changed files with 0 additions and 12 deletions

View File

@ -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;