mirror of
https://github.com/geometer/FBReaderJ.git
synced 2025-10-06 03:50:19 +02:00
no static methods in Bookmark
This commit is contained in:
parent
75af08e4fe
commit
31e5b3a823
6 changed files with 34 additions and 15 deletions
|
@ -19,6 +19,8 @@
|
|||
|
||||
package org.geometerplus.android.fbreader.libraryService;
|
||||
|
||||
import java.util.*;
|
||||
|
||||
import android.os.RemoteException;
|
||||
|
||||
import org.geometerplus.fbreader.library.*;
|
||||
|
@ -84,4 +86,16 @@ public class LibraryShadow extends AbstractLibrary {
|
|||
public void startBookSearch(final String pattern) {
|
||||
// TODO: implement
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Bookmark> bookmarks() {
|
||||
// TODO: implement
|
||||
return Collections.emptyList();
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Bookmark> invisibleBookmarks(Book book) {
|
||||
// TODO: implement
|
||||
return Collections.emptyList();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue