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

debug information printing has been removed

This commit is contained in:
Nikolay Pultsin 2010-11-28 21:43:32 +00:00
parent 8cb67b335e
commit 7ef8efe311
9 changed files with 2 additions and 59 deletions

View file

@ -209,14 +209,12 @@ public final class Library {
}
private void build() {
//System.err.println("before build: " + System.currentTimeMillis() % 20000);
final HashMap<Tag,TagTree> tagTreeMap = new HashMap<Tag,TagTree>();
final HashMap<Author,AuthorTree> authorTreeMap = new HashMap<Author,AuthorTree>();
final HashMap<AuthorSeriesPair,SeriesTree> seriesTreeMap = new HashMap<AuthorSeriesPair,SeriesTree>();
final HashMap<Long,Book> bookById = new HashMap<Long,Book>();
collectBooks();
//System.err.println(myBooks.size() + " books " + System.currentTimeMillis() % 20000);
for (Book book : myBooks) {
bookById.put(book.getId(), book);
List<Author> authors = book.authors();
@ -268,7 +266,6 @@ public final class Library {
}
}
});
//System.err.println("after build: " + System.currentTimeMillis() % 20000);
}
public void synchronize() {