if (LOG.isInfoEnabled()) {
LOG.info("Loading " + uri);
}
ManagedContentEntity entity = null;
try {
entity = protocol.load(uri);
} catch(OutOfMemoryError e) {
LOG.error("Out of memory processing: " + uri + " skipping", e);
throw new DroidsException(e);
}
try {