You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It becomes more and more sluggish as one moves along a book and on very large books it will crash because of that I think your proble lies in this code in the Content class, below:
BookSectionmaintainBookSections(intindex) throwsReadingException, OutOfPagesException {
if (peakPage == index) { // Moving in order.peakPage++;
} else {
while (peakPage < index) { // Trying to move forward. Calculate the ones before first.getBookSection(peakPage++);
}
}
returngetBookSection(index);
}
The text was updated successfully, but these errors were encountered:
It becomes more and more sluggish as one moves along a book and on very large books it will crash because of that I think your proble lies in this code in the Content class, below:
The text was updated successfully, but these errors were encountered: