1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-03 09:49:19 +02:00

Deleted redundant methods

This commit is contained in:
lidoxod 2013-08-17 23:52:52 +04:00
parent 59963a6af0
commit 7286858c89

View file

@ -56,8 +56,6 @@ public class Book extends TitledEntity {
private static final WeakReference<ZLImage> NULL_IMAGE = new WeakReference<ZLImage>(null);
private WeakReference<ZLImage> myCover;
private RationalNumber myProgress;
Book(long id, ZLFile file, String title, String encoding, String language) {
super(title);
myId = id;
@ -543,12 +541,4 @@ public class Book extends TitledEntity {
.append("]")
.toString();
}
public void setProgress(long numerator, long denominator) {
myProgress = new RationalNumber(numerator, denominator);
}
public RationalNumber getProgress() {
return myProgress;
}
}