1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 18:29:23 +02:00

platform-independent code has been moved to non-android directory

This commit is contained in:
Nikolay Pultsin 2011-07-14 15:45:30 +01:00
parent 15a0394ccf
commit 0ae1f66dda
6 changed files with 44 additions and 35 deletions

View file

@ -69,4 +69,9 @@ public class BookTree extends LibraryTree {
protected ZLImage createCover() {
return Library.getCover(Book.File);
}
@Override
public boolean containsBook(Book book) {
return book != null && book.equals(Book);
}
}