247248249250251252253
} catch (IOException unexpected) { NoSuchElementException e = new NoSuchElementException(unexpected.getLocalizedMessage()); e.initCause(unexpected); throw e; } return new PListEntry(entry.getKey(), bs, new Locator(entry.getKey())); }
503504505506507508509510511512513514
return iterator.hasNext(); } public MessageReference next() { try { PListEntry entry = iterator.next(); return getMessage(entry.getByteSequence()); } catch (IOException e) { LOG.error("I/O error", e); throw new RuntimeException(e); } }