mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-04 10:19:33 +02:00
library initialization
Conflicts: src/org/geometerplus/fbreader/book/BookCollection.java
This commit is contained in:
parent
42a38f3ab9
commit
e8b6c001ff
7 changed files with 101 additions and 65 deletions
|
@ -116,7 +116,11 @@ public class LibraryService extends Service {
|
|||
return myCollection.size();
|
||||
}
|
||||
|
||||
public List<String> books(String pattern) {
|
||||
public List<String> books() {
|
||||
return SerializerUtil.serializeBookList(myCollection.books());
|
||||
}
|
||||
|
||||
public List<String> booksForPattern(String pattern) {
|
||||
return SerializerUtil.serializeBookList(myCollection.books(pattern));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue