Remove unused util classes

This commit is contained in:
inorichi
2015-10-21 20:54:11 +02:00
parent 985d71a869
commit 57290a5395
10 changed files with 6 additions and 122 deletions

View File

@@ -0,0 +1,13 @@
package eu.kanade.mangafeed.events;
public class ChapterCountEvent {
private int count;
public ChapterCountEvent(int count) {
this.count = count;
}
public int getCount() {
return count;
}
}

View File

@@ -0,0 +1,23 @@
package eu.kanade.mangafeed.events;
import eu.kanade.mangafeed.data.models.Chapter;
import eu.kanade.mangafeed.sources.Source;
public class SourceChapterEvent {
private Source source;
private Chapter chapter;
public SourceChapterEvent(Source source, Chapter chapter) {
this.source = source;
this.chapter = chapter;
}
public Source getSource() {
return source;
}
public Chapter getChapter() {
return chapter;
}
}