1
0
Fork 0
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:
Nikolay Pultsin 2012-03-19 10:51:43 +00:00
parent 75af08e4fe
commit 31e5b3a823
6 changed files with 34 additions and 15 deletions

View file

@ -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();
}
}