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

code simplification

This commit is contained in:
Nikolay Pultsin 2011-07-14 11:15:15 +01:00
parent 06522921a2
commit 63e99307bd
4 changed files with 27 additions and 31 deletions

View file

@ -36,6 +36,10 @@ public abstract class LibraryTree extends FBTree {
return getName();
}
public Book getBook() {
return null;
}
TagTree createTagSubTree(Tag tag) {
return new TagTree(this, tag);
}