}
try {
for (int i = begin; i <= end; i++) {
Verse temp = new Verse(cbBook.getSelectedIndex() + 1, cbChapter.getSelectedIndex() + 1, i);
BookData data = new BookData(book, temp);
String versetext = OSISUtil.getCanonicalText(data.getOsisFragment());
// Skip blank lines (this may happen if the selected bible does not
// contain the choosed text, it may be a New Testment only, for example)
if (versetext.trim().length() == 0) {
continue;