1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-05 10:49:24 +02:00

single NetworkLibraryActivity instance is now used

This commit is contained in:
Nikolay Pultsin 2011-08-15 02:13:52 +01:00
parent 364e191be1
commit 469525664d
9 changed files with 50 additions and 36 deletions

View file

@ -22,9 +22,12 @@ package org.geometerplus.fbreader.network.tree;
import org.geometerplus.fbreader.network.*;
public final class RootTree extends NetworkTree {
public final boolean IsFake;
private final String myId;
public RootTree(String id) {
public RootTree(String id, boolean isFake) {
IsFake = isFake;
myId = id;
}