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

a cleanup

This commit is contained in:
Nikolay Pultsin 2010-12-15 19:53:41 +03:00
parent 3da3c3f1a2
commit f21995251c
3 changed files with 10 additions and 17 deletions

View file

@ -64,7 +64,7 @@ abstract class LibraryBaseActivity extends ListActivity {
new ZLStringOption("BookSearch", "Pattern", "");
protected final ZLResource myResource = ZLResource.resource("libraryView");
protected String mySelectedBookPath;
private String mySelectedBookPath;
private static int CHILD_LIST_REQUEST = 0;
private static int RESULT_DONT_INVALIDATE_VIEWS = 0;
@ -290,16 +290,14 @@ abstract class LibraryBaseActivity extends ListActivity {
protected class OpenTreeRunnable implements Runnable {
private final String myTreePath;
private final String myParameter;
private final String mySelectedBookPath;
public OpenTreeRunnable(String treePath, String selectedBookPath) {
this(treePath, null, selectedBookPath);
public OpenTreeRunnable(String treePath) {
this(treePath, null);
}
public OpenTreeRunnable(String treePath, String parameter, String selectedBookPath) {
public OpenTreeRunnable(String treePath, String parameter) {
myTreePath = treePath;
myParameter = parameter;
mySelectedBookPath = selectedBookPath;
}
public void run() {