1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-04 02:09:35 +02:00

unused code has been removed

This commit is contained in:
Nikolay Pultsin 2011-03-02 16:54:04 +00:00
parent 348c749054
commit f3f228b427
3 changed files with 16 additions and 38 deletions

View file

@ -272,7 +272,7 @@ public class NetworkLibrary {
return url;
}
public void invalidateChildren() {
private void invalidateChildren() {
myChildrenAreInvalid = true;
}
@ -369,10 +369,9 @@ public class NetworkLibrary {
private void updateVisibility() {
for (FBTree tree : myRootTree.subTrees()) {
if (!(tree instanceof NetworkCatalogTree)) {
continue;
if (tree instanceof NetworkCatalogTree) {
((NetworkCatalogTree)tree).updateVisibility();
}
((NetworkCatalogTree) tree).updateVisibility();
}
}