while (repos.hasMoreElements()) {
RssChannel repo = (RssChannel) repos.nextElement();
Enumeration repoItems = repo.items();
while (repoItems.hasMoreElements()) {
RssChannelItem item = (RssChannelItem) repoItems.nextElement();
RssJbnPatch patch = item.getJbnPatch();
RssDublinCore dublinCore = item.getDublinCore();
// We need the data in these objects, so skip if either are null. I'm not sure this constitutes
// an error, but leaving the log message at warn for now.
if ((dublinCore == null) || (patch == null)) {
log.debug("Feed entry parsed data returned null. Skipping entry. Patch: " + patch